Skip to content

Commit

Permalink
Actions: don't build for aarch64
Browse files Browse the repository at this point in the history
  • Loading branch information
Ernest1338 committed Jan 21, 2025
1 parent 2f7f119 commit 0f7f674
Showing 1 changed file with 0 additions and 23 deletions.
23 changes: 0 additions & 23 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,21 +31,12 @@ jobs:
- name: Adding x86_64 musl target
run: rustup target add x86_64-unknown-linux-musl

- name: Adding aarch64 musl target
run: rustup target add aarch64-unknown-linux-musl

- name: Build Debug x86
run: cargo build --target=x86_64-unknown-linux-musl --verbose

- name: Build Release x86
run: cargo build --target=x86_64-unknown-linux-musl --release --verbose

- name: Build Debug aarch64
run: cargo build --target=aarch64-unknown-linux-musl --verbose

- name: Build Release aarch64
run: cargo build --target=aarch64-unknown-linux-musl --release --verbose

- name: Upload Debug x86 build
if: success()
uses: actions/upload-artifact@v4
Expand All @@ -60,17 +51,3 @@ jobs:
name: black
path: target/x86_64-unknown-linux-musl/release/black

- name: Upload Debug aarch64 build
if: success()
uses: actions/upload-artifact@v4
with:
name: black-arm-debug
path: target/aarch64-unknown-linux-musl/debug/black

- name: Upload Release aarch64 build
if: success()
uses: actions/upload-artifact@v4
with:
name: black-arm
path: target/aarch64-unknown-linux-musl/release/black

0 comments on commit 0f7f674

Please sign in to comment.