Skip to content

Commit 98a420e

Browse files
testing build
1 parent 8652d69 commit 98a420e

File tree

1 file changed

+5
-11
lines changed

1 file changed

+5
-11
lines changed

.github/workflows/build-zauth.yaml

Lines changed: 5 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -22,21 +22,15 @@ jobs:
2222
with:
2323
osx-version: ${{ env.SDK_VERSION }}
2424

25-
- name: Set compiler variables
26-
run: |
27-
export CC=$OSXCROSS_TARGET/bin/aarch64-apple-darwin24.5-clang
28-
export CXX=$OSXCROSS_TARGET/bin/aarch64-apple-darwin24.5-clang++
29-
export AR=$OSXCROSS_TARGET/bin/aarch64-apple-darwin24.5-ar
30-
export SDKROOT=$OSXCROSS_TARGET/SDK/MacOSX${SDK_VERSION}.sdk
31-
export MACOSX_DEPLOYMENT_TARGET=11.0
32-
echo "CC=$CC"
33-
$CC --version
34-
35-
- name: Install Rust
25+
- name: Install Rust (with macOS ARM64 target)
3626
uses: actions-rs/toolchain@v1
3727
with:
3828
toolchain: stable
3929
override: true
30+
target: aarch64-apple-darwin
31+
32+
- name: Verify target installed
33+
run: rustup target list --installed
4034

4135
- name: Build zauth
4236
run: |

0 commit comments

Comments
 (0)