Skip to content

Commit

Permalink
forcing xcode 15.4
Browse files Browse the repository at this point in the history
minor

minor
  • Loading branch information
miguelangel-dev committed Oct 21, 2024
1 parent db45b15 commit 509794e
Showing 1 changed file with 19 additions and 15 deletions.
34 changes: 19 additions & 15 deletions .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ jobs:
profile: minimal
toolchain: 1.81.0
default: true
- name: Select Xcode 15.4
run: sudo xcode-select -s /Applications/Xcode_15.4.app
- name: Build Automerge XCFramework and library
if: steps.cache-automerge.outputs.cache-hit != 'true'
run: ./scripts/build-xcframework.sh
Expand All @@ -46,11 +48,13 @@ jobs:
libuniffi_automerge.a
libuniffi_automerge_threads.a
test-automerge-swift:
mac:
runs-on: macos-14
needs: automerge-dependencies
steps:
- uses: actions/checkout@v4
- name: Select Xcode 15.4
run: sudo xcode-select -s /Applications/Xcode_15.4.app
- name: Restore Automerge XCFramework and library
uses: actions/cache/restore@v4
with:
Expand All @@ -65,15 +69,15 @@ jobs:
- name: Swift tests
run: swift test

test-automerge-wasm:
wasm:
runs-on: ubuntu-latest
needs: automerge-dependencies
strategy:
matrix:
include:
- toolchain: swift-DEVELOPMENT-SNAPSHOT-2024-10-08-a
swift-sdk: swift-wasm-DEVELOPMENT-SNAPSHOT-2024-10-15-a
checksum: 229cd9d3b0ed582c7ef7c3064888ad78764e4743b5a770df92554a94513f53fb
- toolchain: swift-5.10-DEVELOPMENT-SNAPSHOT-2024-05-29-a
swift-sdk: swift-wasm-5.10.0-RELEASE
checksum: 511904522b87c0841b151a46aa9a515ab6eae457f45426922b04c1e461705a3a
steps:
- uses: actions/checkout@v4
- uses: bytecodealliance/actions/wasmtime/setup@v1
Expand All @@ -86,25 +90,25 @@ jobs:
libuniffi_automerge.a
libuniffi_automerge_threads.a
key: automerge-dependencies-{{ hashFiles(AutomergeUniffi/automerge.swift) }}-{{ hashFiles(rust/Cargo.lock) }}
- name: Cache SDK for WebAssembly
id: cache-wasm-sdk
- name: Cache Toolchain for WebAssembly
id: cache-wasm-toolchain
uses: actions/cache@v4
with:
path: /tmp/swift-sdk.tar.gz
key: wasm-sdk-${{ matrix.checksum }}
- name: Download SDK for WebAssembly
if: steps.cache-wasm-sdk.outputs.cache-hit != 'true'
path: /tmp/swift-toolchain.tar.gz
key: wasm-toolchain-${{ matrix.checksum }}
- name: Download Toolchain for WebAssembly
if: steps.cache-wasm-toolchain.outputs.cache-hit != 'true'
run: |
SWIFT_TOOLCHAIN_TAG="${{ matrix.toolchain }}"
set -ex
curl -f -o /tmp/swift-sdk.tar.gz "https://download.swift.org/development/ubuntu2204/$SWIFT_TOOLCHAIN_TAG/$SWIFT_TOOLCHAIN_TAG-ubuntu22.04.tar.gz"
- name: Install Swift and Swift SDK for WebAssembly
curl -f -o /tmp/swift-toolchain.tar.gz "https://download.swift.org/swift-5.10-branch/ubuntu2204/$SWIFT_TOOLCHAIN_TAG/$SWIFT_TOOLCHAIN_TAG-ubuntu22.04.tar.gz"
- name: Install Toolchain and Swift SDK for WebAssembly
run: |
PREFIX=/opt/swift
SWIFT_SDK_TAG="${{ matrix.swift-sdk }}"
set -ex
sudo mkdir -p $PREFIX; sudo tar -xzf /tmp/swift-sdk.tar.gz -C $PREFIX --strip-component 1
$PREFIX/usr/bin/swift sdk install "https://github.com/swiftwasm/swift/releases/download/$SWIFT_SDK_TAG/$SWIFT_SDK_TAG-wasm32-unknown-wasi.artifactbundle.zip" --checksum ${{ matrix.checksum }}
sudo mkdir -p $PREFIX; sudo tar -xzf /tmp/swift-toolchain.tar.gz -C $PREFIX --strip-component 1
$PREFIX/usr/bin/swift sdk install "https://github.com/swiftwasm/swift/releases/download/$SWIFT_SDK_TAG/$SWIFT_SDK_TAG-ubuntu22.04_x86_64.artifactbundle.zip" --checksum ${{ matrix.checksum }}
echo "$PREFIX/usr/bin" >> $GITHUB_PATH
- name: Build tests
run: swift build --swift-sdk wasm32-unknown-wasi --build-tests -Xlinker "`pwd`/libuniffi_automerge.a" -Xlinker -z -Xlinker stack-size=$((1024 * 1024))
Expand Down

0 comments on commit 509794e

Please sign in to comment.