mirror of
https://github.com/diamondburned/arikawa.git
synced 2024-11-01 04:24:19 +00:00
56 lines
1.4 KiB
YAML
56 lines
1.4 KiB
YAML
{
|
|
"image": "golang:alpine",
|
|
"variables": {
|
|
"GO111MODULE": "on",
|
|
"CGO_ENABLED": "1", # for the race detector
|
|
"COV": "/tmp/cov_results",
|
|
"dismock": "github.com/mavolin/dismock/v2/pkg/dismock",
|
|
"dismock_v": "259685b84e4b6ab364b0fd858aac2aa2dfa42502",
|
|
# used only in integration_test
|
|
"tested": "./api,./gateway,./bot,./discord"
|
|
},
|
|
"before_script": [
|
|
"apk add git build-base"
|
|
],
|
|
"stages": [
|
|
"build",
|
|
"test"
|
|
],
|
|
"build_test": {
|
|
"stage": "build",
|
|
"script": [
|
|
"go build ./..."
|
|
]
|
|
},
|
|
"unit_test": {
|
|
"stage": "test",
|
|
"timeout": "2m", # 2 minutes
|
|
# Don't run the test if we have a $BOT_TOKEN, because
|
|
# integration_test will run instead.
|
|
"except": {
|
|
"variables": [ "$BOT_TOKEN" ]
|
|
},
|
|
"script": [
|
|
"go test -coverprofile $COV -tags unitonly -race ./...",
|
|
"go tool cover -func $COV"
|
|
]
|
|
},
|
|
"integration_test": {
|
|
"stage": "test",
|
|
"timeout": "5m", # 5 minutes
|
|
# Run the test only if we have $BOT_TOKEN, else fallback to unit
|
|
# tests.
|
|
"only": {
|
|
"variables": [ "$BOT_TOKEN", "$CHANNEL_ID", "$VOICE_ID" ]
|
|
},
|
|
"script": [
|
|
"go get ./...",
|
|
# Test this package along with dismock.
|
|
"go get $dismock@$dismock_v",
|
|
"go test -coverpkg $tested -coverprofile $COV -race ./... $dismock",
|
|
"go mod tidy",
|
|
"go tool cover -func $COV"
|
|
]
|
|
}
|
|
}
|