Fix swift version #11
Workflow file for this run
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: Swift | |
on: | |
push: | |
tags: | |
- 'v*' | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build-xcframework: | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Protoc | |
uses: arduino/setup-protoc@v2 | |
with: | |
repo-token: ${{ secrets.GITHUB_TOKEN }} | |
- name: Install Rust toolchain | |
uses: dtolnay/rust-toolchain@nightly | |
with: | |
targets: aarch64-apple-ios,aarch64-apple-ios-sim,aarch64-apple-darwin,x86_64-apple-ios,x86_64-apple-darwin | |
- uses: Swatinem/rust-cache@v2 | |
- name: Install more rust stuff | |
run: | | |
rustup component add rust-src --toolchain nightly-x86_64-apple-darwin | |
- name: Build | |
run: | | |
cargo +nightly build -Zbuild-std --target aarch64-apple-ios --profile release-full | |
cargo +nightly build -Zbuild-std --target aarch64-apple-ios-sim --profile release-full | |
cargo +nightly build -Zbuild-std --target aarch64-apple-darwin --profile release-full | |
cargo +nightly build -Zbuild-std --target aarch64-apple-ios-macabi --profile release-full | |
cargo +nightly build -Zbuild-std --target x86_64-apple-ios --profile release-full | |
cargo +nightly build -Zbuild-std --target x86_64-apple-darwin --profile release-full | |
cargo +nightly build -Zbuild-std --target x86_64-apple-ios-macabi --profile release-full | |
- name: Strip | |
run: | | |
strip ./target/x86_64-apple-ios/release-full/libswisstronik.a | |
strip ./target/x86_64-apple-darwin/release-full/libswisstronik.a | |
strip ./target/x86_64-apple-ios-macabi/release-full/libswisstronik.a | |
strip ./target/aarch64-apple-ios/release-full/libswisstronik.a | |
strip ./target/aarch64-apple-ios-sim/release-full/libswisstronik.a | |
strip ./target/aarch64-apple-darwin/release-full/libswisstronik.a | |
strip ./target/aarch64-apple-ios-macabi/release-full/libswisstronik.a | |
- name: Create libs | |
run: | | |
lipo -create ./target/x86_64-apple-darwin/release-full/libswisstronik.a ./target/aarch64-apple-darwin/release-full/libswisstronik.a -output ./swisstronik/libswisstronik_macos.a | |
lipo -create ./target/x86_64-apple-ios/release-full/libswisstronik.a ./target/aarch64-apple-ios-sim/release-full/libswisstronik.a -output ./swisstronik/libswisstronik_iossimulator.a | |
lipo -create ./target/x86_64-apple-ios-macabi/release-full/libswisstronik.a ./target/aarch64-apple-ios-macabi/release-full/libswisstronik.a -output ./swisstronik/libswisstronik_maccatalyst.a | |
- name: XCFramework | |
run: | | |
xcodebuild -create-xcframework -library ./swisstronik/libswisstronik_macos.a -headers ./include/ -library ./swisstronik/libswisstronik_iossimulator.a -headers ./include/ -library ./swisstronik/libswisstronik_maccatalyst.a -headers ./include/ -library ./target/aarch64-apple-ios/release-full/libswisstronik.a -headers ./include/ -output ./swisstronik/SwisstronikRust.xcframework | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: SwisstronikRust.xcframework | |
path: ./swisstronik/SwisstronikRust.xcframework | |