Remove specific nightly version #97
Workflow file for this run
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
name: Build | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
env: | |
CARGO_TERM_COLOR: always | |
jobs: | |
build-linux-x86_64: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Rustfmt Check | |
run: cargo fmt --check | |
- name: Add x86_64-unknown-linux-musl target | |
run: | | |
rustup target add x86_64-unknown-linux-musl | |
sudo apt-get -y update | |
sudo apt-get -y install musl-dev musl-tools | |
- name: Build | |
run: cargo build --target=x86_64-unknown-linux-musl --verbose | |
- name: Run tests | |
run: cargo test --verbose | |
- name: Build benches | |
run: cargo bench --features bench --no-run | |
build-linux-arm64: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install cross | |
run: cargo install cross | |
- name: Build | |
run: cross build --target aarch64-unknown-linux-musl --verbose | |
build-darwin-x86_64: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: cargo build --verbose | |
build-darwin-arm64: | |
runs-on: macos-14 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: cargo build --verbose | |
build-windows-x86_64: | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Build | |
run: cargo build --target=x86_64-pc-windows-msvc --verbose | |
- name: Run tests | |
run: cargo test --verbose | |
build-windows-arm64: | |
runs-on: windows-2022 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Add aarch64-pc-windows-msvc target | |
run: rustup target add aarch64-pc-windows-msvc | |
- name: Build | |
run: cargo build --target=aarch64-pc-windows-msvc --verbose |