Skip to content

Commit 65429b5

Browse files
committed
create Go 1.19 compilecheck
1 parent 3ad821d commit 65429b5

File tree

1 file changed

+11
-1
lines changed

1 file changed

+11
-1
lines changed

Taskfile.yml

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,19 @@ tasks:
1717
- go build ./...
1818
- go build ${BUILD_TAGS} ./...
1919
- task: build-tests
20+
- task: compilecheck-119
2021
- task: cross-compile
2122
build-tests: go test -short ${BUILD_TAGS} -run ^$$ ./...
22-
build-compile-check: bash etc/compile_check.sh
23+
compilecheck-119:
24+
dir: internal/test/compilecheck
25+
env:
26+
GOWORK: off
27+
GOTOOLCHAIN: local
28+
GO_VERSIONS: "1.19"
29+
COMPILECHECK_USE_DOCKER: "0"
30+
cmds:
31+
- go mod download
32+
- go test -v -run '^TestCompileCheck/golang:1\.19$'
2333
build-compile-check-all: bash etc/run-compile-check-test.sh
2434
build-aws-ecs-test: go test -c ./internal/test/aws -o aws.testbin
2535
cross-compile:

0 commit comments

Comments
 (0)