Update rust.yml
This commit is contained in:
parent
1084c80f14
commit
a949b4e884
1 changed files with 6 additions and 2 deletions
8
.github/workflows/rust.yml
vendored
8
.github/workflows/rust.yml
vendored
|
@ -18,15 +18,19 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
- name: Build
|
- name: Build
|
||||||
run: cargo build --verbose
|
run: cargo +nightly build
|
||||||
- name: Run tests
|
- name: Run tests
|
||||||
run: cargo test --verbose
|
run: cargo +nightly test
|
||||||
|
|
||||||
build2:
|
build2:
|
||||||
runs-on: [macos-latest]
|
runs-on: [macos-latest]
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v2
|
- uses: actions/checkout@v2
|
||||||
|
- name: Install Target iOS
|
||||||
|
run: rustup target add aarch64-apple-ios
|
||||||
|
- name: Install Target MacOS ARM
|
||||||
|
run: rustup target add aarch64-apple-darwin
|
||||||
- name: Cross Build iOS
|
- name: Cross Build iOS
|
||||||
run: cargo build --target aarch64-apple-ios
|
run: cargo build --target aarch64-apple-ios
|
||||||
- name: Cross Build MacOS ARM
|
- name: Cross Build MacOS ARM
|
||||||
|
|
Loading…
Reference in a new issue