We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3232307 commit bf72bb2Copy full SHA for bf72bb2
.github/workflows/build-zauth.yaml
@@ -9,20 +9,16 @@ jobs:
9
build:
10
runs-on: ubuntu-latest
11
steps:
12
- - name: Checkout repository
13
- uses: actions/checkout@v3
14
-
15
- - name: Set up Rust
16
- uses: actions-rs/toolchain@v1
+ - name: Set up MacOS Cross Compiler
+ uses: Timmmm/setup-osxcross@v2
17
with:
18
- toolchain: stable
19
- target: aarch64-apple-darwin
20
- override: true
+ osx-version: "15.6"
21
22
- - name: Install dependencies
23
- run: |
24
- sudo apt-get update
25
- sudo apt-get install -y gcc-aarch64-apple-darwin
+ - name: Install Rustup targets
+ run: rustup target add x86_64-apple-darwin aarch64-apple-darwin
+
+ - name: Checkout repository
+ uses: actions/checkout@v3
26
27
- name: Build zAuth for ARM64
28
run: |
0 commit comments