File tree Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Expand file tree Collapse file tree 3 files changed +11
-3
lines changed Original file line number Diff line number Diff line change @@ -37,13 +37,15 @@ jobs:
37
37
environment :
38
38
DATA_SOURCE_NAME : ' postgresql://postgres:test@localhost:5432/circle_test?sslmode=disable'
39
39
GOOPTS : ' -v -tags integration'
40
+ CGO_ENABLED : 1
41
+ GOEXPERIMENT : boringcrypto
40
42
41
43
steps :
42
44
- checkout
43
45
- setup_remote_docker
44
46
- run : docker version
45
- - run : CGO_ENABLED=1 make build
46
- - run : GOEXPERIMENT=boringcrypto make test
47
+ - run : make build
48
+ - run : make test
47
49
48
50
workflows :
49
51
version : 2
Original file line number Diff line number Diff line change 21
21
docker : ['scratch','ubi']
22
22
# The type of runner that the job will run on
23
23
runs-on : ubuntu-latest
24
+ env :
25
+ CGO_ENABLED : 1
26
+ GOEXPERIMENT : boringcrypto
24
27
name : ${{ matrix.docker }}
25
28
steps :
26
29
- name : Login to Quay.io
38
41
sysdig_secure_token : ${{ secrets.SYSDIG_SECURE_TOKEN }}
39
42
tag_name : dev
40
43
target : ${{ matrix.docker }}
41
- repository : us-docker.pkg.dev
44
+ repository : us-docker.pkg.dev
Original file line number Diff line number Diff line change 16
16
golangci :
17
17
name : lint
18
18
runs-on : ubuntu-latest
19
+ env :
20
+ CGO_ENABLED : 1
21
+ GOEXPERIMENT : boringcrypto
19
22
steps :
20
23
- name : Checkout repository
21
24
uses : actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
You can’t perform that action at this time.
0 commit comments