mirror of
https://github.com/NotAShelf/microfetch.git
synced 2026-04-27 10:55:20 +00:00
arch: add powerpc64 support
This commit is contained in:
parent
05fc3d8df9
commit
03e6d1f4cf
5 changed files with 280 additions and 11 deletions
23
.github/workflows/rust.yml
vendored
23
.github/workflows/rust.yml
vendored
|
|
@ -16,12 +16,22 @@ jobs:
|
|||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
target:
|
||||
- x86_64-unknown-linux-gnu
|
||||
- aarch64-unknown-linux-gnu
|
||||
- riscv64gc-unknown-linux-gnu
|
||||
- loongarch64-unknown-linux-gnu
|
||||
- s390x-unknown-linux-gnu
|
||||
include:
|
||||
- target: x86_64-unknown-linux-gnu
|
||||
toolchain: stable
|
||||
- target: aarch64-unknown-linux-gnu
|
||||
toolchain: stable
|
||||
- target: riscv64gc-unknown-linux-gnu
|
||||
toolchain: stable
|
||||
- target: loongarch64-unknown-linux-gnu
|
||||
toolchain: stable
|
||||
- target: s390x-unknown-linux-gnu
|
||||
toolchain: stable
|
||||
# powerpc64 uses experimental asm features
|
||||
- target: powerpc64le-unknown-linux-gnu
|
||||
toolchain: nightly
|
||||
- target: powerpc64-unknown-linux-gnu
|
||||
toolchain: nightly
|
||||
|
||||
steps:
|
||||
- name: "Checkout"
|
||||
|
|
@ -30,6 +40,7 @@ jobs:
|
|||
- name: "Setup Rust toolchain"
|
||||
uses: actions-rust-lang/setup-rust-toolchain@v1
|
||||
with:
|
||||
toolchain: ${{ matrix.toolchain }}
|
||||
target: ${{ matrix.target }}
|
||||
rustflags: ""
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue