1
0
Fork 0
mirror of https://code.forgejo.org/forgejo/runner.git synced 2025-09-05 18:40:59 +00:00

add gcc package for cgo/-race

This commit is contained in:
Mathieu Fenniak 2025-08-20 15:06:59 -06:00
parent 528bb594af
commit 55c873f360

View file

@ -144,6 +144,7 @@ jobs:
apt-get update -qq
apt-get -q install -qq -y docker.io
- run: apt-get -q install -qq -y gcc # required for `-race`
- name: integration test
run: |
go test -race ./act/container
@ -185,6 +186,8 @@ jobs:
EOF
apt --quiet install --yes -qq docker.io make
- run: apt-get -q install -qq -y gcc # required for `-race`
- run: make integration-test
validate-mocks: