-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8661b73
commit 6cf176b
Showing
1 changed file
with
126 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,126 @@ | ||
name: CI | ||
|
||
on: | ||
push: | ||
pull_request: | ||
|
||
env: | ||
CARGO_TERM_COLOR: always | ||
|
||
jobs: | ||
linux-native: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
libc: [gnu, musl] | ||
include: | ||
- os: ubuntu-latest | ||
arch: x86_64 | ||
- os: buildjet-2vcpu-ubuntu-2204-arm | ||
arch: aarch64 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install Rust | ||
run: rustup update nightly && rustup default nightly | ||
- name: Add target | ||
run: rustup target add ${{ matrix.arch }}-unknown-linux-${{ matrix.libc }} | ||
- name: Test with panic backend | ||
run: LITHIUM_BACKEND=panic cargo test --verbose --target ${{ matrix.arch }}-unknown-linux-${{ matrix.libc }} | ||
- name: Test with Itanium backend | ||
run: LITHIUM_BACKEND=itanium cargo test --verbose --target ${{ matrix.arch }}-unknown-linux-${{ matrix.libc }} | ||
|
||
linux-cross: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
target: | ||
- arm-unknown-linux-gnueabi | ||
- arm-unknown-linux-gnueabihf | ||
- armv7-unknown-linux-gnueabihf | ||
- i686-unknown-linux-gnu | ||
- i686-unknown-linux-musl | ||
- loongarch64-unknown-linux-gnu | ||
- loongarch64-unknown-linux-musl | ||
- powerpc64le-unknown-linux-gnu | ||
- riscv64gc-unknown-linux-gnu | ||
- riscv64gc-unknown-linux-musl | ||
- s390x-unknown-linux-gnu | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install Rust | ||
run: rustup update nightly && rustup default nightly | ||
- name: Install Cross | ||
run: cargo install cross --git https://github.com/cross-rs/cross | ||
- name: Test with panic backend | ||
run: LITHIUM_BACKEND=panic cross test --verbose --target ${{ matrix.target }} | ||
- name: Test with Itanium backend | ||
run: LITHIUM_BACKEND=itanium cross test --verbose --target ${{ matrix.target }} | ||
|
||
darwin: | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
os: | ||
- macos-13 # x86_64 | ||
- macos-15 # aarch64 | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install Rust | ||
run: rustup update nightly && rustup default nightly | ||
- name: Test with panic backend | ||
run: LITHIUM_BACKEND=panic cargo test --verbose | ||
- name: Test with Itanium backend | ||
run: LITHIUM_BACKEND=itanium cargo test --verbose | ||
|
||
windows: | ||
runs-on: windows-latest | ||
strategy: | ||
matrix: | ||
arch: [x86_64, i686] | ||
abi: [msvc, gnu] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Set default-host | ||
run: rustup set default-host ${{ matrix.arch }}-pc-windows-${{ matrix.abi }} | ||
- name: Install Rust | ||
run: rustup update nightly && rustup default nightly | ||
- name: Test with panic backend | ||
run: set LITHIUM_BACKEND=panic && cargo test --verbose | ||
- name: Test with SEH backend | ||
if: matrix.abi == 'msvc' | ||
run: set LITHIUM_BACKEND=seh && cargo test --verbose | ||
- name: Test with Itanium backend | ||
if: matrix.abi == 'gnu' | ||
run: set LITHIUM_BACKEND=itanium && cargo test --verbose | ||
|
||
# TODO: Restore this when strict provenance APIs are in stable. | ||
# test_stable: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Checkout | ||
# uses: actions/checkout@v4 | ||
# - name: Install Rust | ||
# run: rustup update stable && rustup default stable | ||
# - name: Test with panic backend | ||
# run: cargo test --verbose | ||
|
||
lint: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
backend: [panic, itanium, seh] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
- name: Install Rust | ||
run: rustup update nightly && rustup default nightly | ||
- name: Install rustfmt and clippy | ||
run: rustup component add rustfmt clippy | ||
- name: Rustfmt | ||
run: LITHIUM_BACKEND=${{ matrix.backend }} cargo fmt -- --check | ||
- name: Clippy | ||
run: LITHIUM_BACKEND=${{ matrix.backend }} cargo clippy -- -D warnings |