We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9e0e01f commit 2f07cd2Copy full SHA for 2f07cd2
.github/workflows/codeql.yml
@@ -53,9 +53,8 @@ jobs:
53
54
- name: Build (CodeQL-instrumented)
55
shell: bash
56
- env:
57
- GOTOOLCHAIN: local
58
run: |
+ export PATH="$(dirname "$CODEQL_ACTION_GO_BINARY"):$PATH"
59
task build
60
#go build ./...
61
#go build ${BUILD_TAGS} ./...
Taskfile.yml
@@ -21,11 +21,9 @@ tasks:
21
build:
22
deps: [install-libmongocrypt]
23
cmds:
24
- - go build ./...
25
- - go build ${BUILD_TAGS} ./...
26
- #- task: build-tests
27
- #- task: compilecheck-119
28
- #- task: cross-compile
+ - go clean -cache -testcache
+ - GOTOOLCHAIN=local GOFLAGS=-a go build ./...
+ - go test -run '^$' ./...
29
30
build-tests: go test -short ${BUILD_TAGS} -run ^$$ ./...
31
0 commit comments