-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d0d391e
commit 2a775a5
Showing
3 changed files
with
166 additions
and
17 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -56,22 +56,6 @@ jobs: | |
cd crypto-ffi/bindings | ||
./gradlew android:build -x lint -x lintRelease | ||
check-swift: | ||
runs-on: macos-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
rustflags: '' | ||
target: "aarch64-apple-ios,x86_64-apple-ios,aarch64-apple-ios-sim" | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/[email protected] | ||
- name: Setup cargo-make | ||
uses: davidB/rust-cargo-make@v1 | ||
- run: | | ||
cd crypto-ffi | ||
cargo make ios-create-xcframework | ||
check-wasm: | ||
runs-on: ubuntu-latest | ||
env: | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,159 @@ | ||
name: Check swift | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
on: | ||
push: | ||
branches: | ||
- develop | ||
pull_request: | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
CARGO_NET_GIT_FETCH_WITH_CLI: true | ||
CARGO_REGISTRIES_CRATES_IO_PROTOCOL: sparse | ||
SCCACHE_GHA_ENABLED: "true" | ||
RUSTC_WRAPPER: "sccache" | ||
|
||
jobs: | ||
release-build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
rustflags: '' | ||
target: aarch64-apple-darwin | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/[email protected] | ||
- name: Setup cargo-make | ||
uses: davidB/rust-cargo-make@v1 | ||
- name: Run release-build | ||
run: | | ||
cd crypto-ffi | ||
cargo make tasks.release-build-aarch64-apple-darwin | ||
compile-ffi-swift: | ||
runs-on: ubuntu-latest | ||
needs: release-build | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/[email protected] | ||
- name: Setup cargo-make | ||
uses: davidB/rust-cargo-make@v1 | ||
- name: Run compile-ffi-swift | ||
run: | | ||
cd crypto-ffi | ||
cargo make compile-ffi-swift | ||
ffi-swift: | ||
runs-on: ubuntu-latest | ||
needs: compile-ffi-swift | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/[email protected] | ||
- name: Setup cargo-make | ||
uses: davidB/rust-cargo-make@v1 | ||
- name: Run ffi-swift | ||
run: | | ||
cd crypto-ffi | ||
cargo make ffi-swift | ||
ios-device: | ||
runs-on: macos-latest | ||
needs: ffi-swift | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
rustflags: '' | ||
target: "aarch64-apple-ios" | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/[email protected] | ||
- name: Setup cargo-make | ||
uses: davidB/rust-cargo-make@v1 | ||
- name: Run ios-device | ||
run: | | ||
cd crypto-ffi | ||
cargo make ios-device | ||
ios-simulator-x86: | ||
runs-on: macos-latest | ||
needs: ffi-swift | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
rustflags: '' | ||
target: "x86_64-apple-ios" | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/[email protected] | ||
- name: Setup cargo-make | ||
uses: davidB/rust-cargo-make@v1 | ||
- name: Run ios-simulator-x86 | ||
run: | | ||
cd crypto-ffi | ||
cargo make ios-simulator-x86 | ||
ios-simulator-arm: | ||
runs-on: macos-latest | ||
needs: ffi-swift | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
rustflags: '' | ||
target: "aarch64-apple-ios-sim" | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/[email protected] | ||
- name: Setup cargo-make | ||
uses: davidB/rust-cargo-make@v1 | ||
- name: Run ios-simulator-arm | ||
env: | ||
CRATE_CC_NO_DEFAULTS: 1 | ||
TARGET_CFLAGS: $(echo "--target=arm64-apple-ios14.0.0-simulator -mios-simulator-version-min=14.0 -isysroot `xcrun --show-sdk-path --sdk iphonesimulator`") | ||
run: | | ||
cd crypto-ffi | ||
cargo make ios-simulator-arm | ||
ios: | ||
runs-on: macos-latest | ||
needs: [ios-device, ios-simulator-x86, ios-simulator-arm] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
rustflags: '' | ||
target: "aarch64-apple-ios,x86_64-apple-ios,aarch64-apple-ios-sim" | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/[email protected] | ||
- name: Setup cargo-make | ||
uses: davidB/rust-cargo-make@v1 | ||
- name: Run ios | ||
run: | | ||
cd crypto-ffi | ||
cargo make ios | ||
ios-create-xcframework: | ||
runs-on: macos-latest | ||
needs: ios | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions-rust-lang/setup-rust-toolchain@v1 | ||
with: | ||
rustflags: '' | ||
target: "aarch64-apple-ios,x86_64-apple-ios,aarch64-apple-ios-sim" | ||
- name: Run sccache-cache | ||
uses: mozilla-actions/[email protected] | ||
- name: Setup cargo-make | ||
uses: davidB/rust-cargo-make@v1 | ||
- name: Run ios-create-xcframework | ||
run: | | ||
cd crypto-ffi | ||
cargo make ios-create-xcframework |
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