Skip to content

Commit

Permalink
remove linux arm for now
Browse files Browse the repository at this point in the history
  • Loading branch information
chainyo committed Apr 20, 2024
1 parent 308e8b0 commit 8c7875c
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@ jobs:
os: [ubuntu-latest, macos-latest, windows-latest]
arch: [x86_64, ARM64]
include:
- os: ubuntu-latest
arch: ARM64
target: aarch64-unknown-linux-gnu
# - os: ubuntu-latest
# arch: ARM64
# target: aarch64-unknown-linux-gnu
- os: ubuntu-latest
arch: x86_64
target: x86_64-unknown-linux-gnu
Expand All @@ -35,20 +35,19 @@ jobs:
target: x86_64-pc-windows-msvc

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
target: ${{ matrix.target }}
default: true

- name: Build binary
run: cargo build --release --target ${{ matrix.target }}

- name: Upload Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: py-init-cleaner-${{ matrix.target }}
path: target/${{ matrix.target }}/release/py-init-cleaner
Expand All @@ -59,7 +58,7 @@ jobs:
if: startsWith(github.ref, 'refs/tags/v')
steps:
- name: Download all artifacts
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4

- name: Create Release
id: create_release
Expand Down

0 comments on commit 8c7875c

Please sign in to comment.