fix glibc runners https://github.com/OWASP/wrongsecrets/issues/615 #13
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Compile Swift" | |
on: | |
workflow_dispatch: | |
push: | |
paths: | |
- "c/**" | |
- ".github/**" | |
pull_request: | |
permissions: | |
contents: read | |
jobs: | |
build-darwin: | |
name: MacOS(Intel&ARM) | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: swift-actions/setup-swift@v1 | |
with: | |
swift-version: "5.9" | |
- name: Get swift version | |
run: swift --version # Swift 5.9.x | |
- name: Compile Swift for MacOS | |
run: | | |
echo "compiling for MacOSP" | |
(cd swift && swift run -c release --arch arm64 --arch x86_64 --static-swift-stdlib) | |
- name: Uploading Swift executables | |
uses: actions/upload-artifact@v4 | |
with: | |
name: executable-swift-MacOS | |
path: swift/.build/apple/Products/Release/wrongsecrets-swift | |
build-glibclinux: | |
name: Linux(Intel&ARM) | |
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" | |
mkdir target | |
cd swift | |
docker run -v "$PWD:/sources" -w /sources --platform linux/arm64 swift:5.9.2 swift run -c release --static-swift-stdlib | |
cp .build/aarch64-unknown-linux-gnu/release/wrongsecrets-swift ../target/wrongsecrets-swift-linux-arm | |
docker run -v "$PWD:/sources" -w /sources --platform linux/amd64 swift:5.9.2 swift run -c release --static-swift-stdlib | |
cp .build/x86_64-unknown-linux-gnu/release/wrongsecrets-swift ../target/wrongsecrets-swift-linux | |
- name: Uploading Swift executables | |
uses: actions/upload-artifact@v4 | |
with: | |
name: executable-swift-Linux | |
path: target/* |