Skip to content

Commit

Permalink
ci(build): remove arm for now
Browse files Browse the repository at this point in the history
  • Loading branch information
DevYukine committed Nov 19, 2023
1 parent ecc3ddf commit 51b2624
Showing 1 changed file with 0 additions and 40 deletions.
40 changes: 0 additions & 40 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,6 @@ jobs:
- build_target: x86_64-unknown-linux-musl
arch: x64
lib: musl
- build_target: aarch64-unknown-linux-gnu
arch: arm64
lib: gnu
steps:
- name: Checkout Source code
uses: actions/checkout@v4
Expand Down Expand Up @@ -55,43 +52,6 @@ jobs:
name: rustfoil_${{ runner.OS }}_${{ matrix.target.lib }}_${{ matrix.target.arch }}
path: rustfoil-cli/target/${{ matrix.target.build_target }}/release/rustfoil-cli


linux-arm:
name: Linux ARM Build
runs-on: ubuntu-latest
strategy:
matrix:
target:
- build_target: aarch64-unknown-linux-gnu
arch: arm64
lib: gnu
steps:
- name: Checkout Source code
uses: actions/checkout@v4
- name: Cache Rust dependencies
uses: actions/cache@v3
with:
path: |
~/.cargo/registry
~/.cargo/git
rustfoil-cli/target
rustfoil-lib/target
key: ${{ matrix.target.build_target }}-cargo-${{ hashFiles('**/**/Cargo.lock') }}
- name: Install Rust Toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
target: ${{ matrix.target.build_target }}
- name: Install Build-Tools
run: sudo apt-get install build-essential zstd gcc-aarch64-linux-gnu
- name: Build
run: cd rustfoil-cli && cargo build --release --target=${{ matrix.target.build_target }}
- name: Upload Action Artifact
uses: actions/upload-artifact@v3
with:
name: rustfoil_${{ runner.OS }}_${{ matrix.target.lib }}_${{ matrix.target.arch }}
path: rustfoil-cli/target/${{ matrix.target.build_target }}/release/rustfoil-cli

windows:
name: Windows Build
runs-on: windows-latest
Expand Down

0 comments on commit 51b2624

Please sign in to comment.