Skip to content

Commit

Permalink
fix glibc runners OWASP/wrongsecrets#615
Browse files Browse the repository at this point in the history
  • Loading branch information
commjoen committed Feb 26, 2024
1 parent 492fb13 commit 08b29ed
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion .github/workflows/compile_swift.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,18 @@ jobs:
path: swift/.build/apple/Products/Release/wrongsecrets-swift
build-glibclinux:
name: Linux(Intel&ARM)
runs-on: ubuntu-latest
runs-on: macos-latest
steps:
- uses: actions/checkout@v4
- name: Setup docker (missing on MacOS)
if: runner.os == 'macos'
run: |
brew install docker
colima start
# For testcontainers to find the Colima socket
# https://github.com/abiosoft/colima/blob/main/docs/FAQ.md#cannot-connect-to-the-docker-daemon-at-unixvarrundockersock-is-the-docker-daemon-running
sudo ln -sf $HOME/.colima/default/docker.sock /var/run/docker.sock
- name: Compile Swift for glibc linux
run: |
echo "compiling for Linux"
Expand Down

0 comments on commit 08b29ed

Please sign in to comment.