Skip to content

Try swift

Try swift #16

Workflow file for this run

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 MacOS"
(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/*
build-windows:
runs-on: windows-latest
steps:
- uses: compnerd/gha-setup-swift@main
with:
branch: swift-5.9.2-release
tag: 5.9.2-RELEASE
- uses: actions/checkout@v4
- name: Compile Swift for Windows
run: |
echo "compiling for Windows"
(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