Skip to content

Commit fb55854

Browse files
committed
[SECCOMP-31582] - export globally
1 parent be6245e commit fb55854

File tree

3 files changed

+11
-3
lines changed

3 files changed

+11
-3
lines changed

.circleci/config.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,15 @@ jobs:
3737
environment:
3838
DATA_SOURCE_NAME: 'postgresql://postgres:test@localhost:5432/circle_test?sslmode=disable'
3939
GOOPTS: '-v -tags integration'
40+
CGO_ENABLED: 1
41+
GOEXPERIMENT: boringcrypto
4042

4143
steps:
4244
- checkout
4345
- setup_remote_docker
4446
- run: docker version
45-
- run: CGO_ENABLED=1 make build
46-
- run: GOEXPERIMENT=boringcrypto make test
47+
- run: make build
48+
- run: make test
4749

4850
workflows:
4951
version: 2

.github/workflows/build.yaml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@ jobs:
2121
docker: ['scratch','ubi']
2222
# The type of runner that the job will run on
2323
runs-on: ubuntu-latest
24+
env:
25+
CGO_ENABLED: 1
26+
GOEXPERIMENT: boringcrypto
2427
name: ${{ matrix.docker }}
2528
steps:
2629
- name: Login to Quay.io
@@ -38,4 +41,4 @@ jobs:
3841
sysdig_secure_token: ${{ secrets.SYSDIG_SECURE_TOKEN }}
3942
tag_name: dev
4043
target: ${{ matrix.docker }}
41-
repository: us-docker.pkg.dev
44+
repository: us-docker.pkg.dev

.github/workflows/golangci-lint.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,9 @@ jobs:
1616
golangci:
1717
name: lint
1818
runs-on: ubuntu-latest
19+
env:
20+
CGO_ENABLED: 1
21+
GOEXPERIMENT: boringcrypto
1922
steps:
2023
- name: Checkout repository
2124
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1

0 commit comments

Comments
 (0)