Skip to content

feat: add prebuilt aarch64 binary #373

feat: add prebuilt aarch64 binary

feat: add prebuilt aarch64 binary #373

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: moonrepo/setup-rust@v1
with:
components: rustfmt, clippy
- uses: pre-commit/action@v2.0.0
with:
extra_args: --all-files
msrv-check:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: moonrepo/setup-rust@v1
with:
bins: cargo-msrv
- name: Check cospeed MSRV
run: cargo msrv --path crates/codspeed verify -- cargo check --all-features --config codspeed=true
- name: Check bencher_compat MSRV
run: cargo msrv --path crates/bencher_compat verify -- cargo check --all-features --config codspeed=true
- name: Check criterion_compat MSRV
run: cargo msrv --path crates/criterion_compat verify -- cargo check --all-features --config codspeed=true
tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: moonrepo/setup-rust@v1
- run: cargo test --all
compat-integration-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: moonrepo/setup-rust@v1
with:
cache-target: release
- run: cargo install --path crates/cargo-codspeed --locked
- run: cargo codspeed build -p codspeed
- run: cargo codspeed build -p codspeed-bencher-compat
- run: cargo codspeed build --features async_futures -p codspeed-criterion-compat
- name: Run the benchmarks
uses: CodSpeedHQ/action@main
with:
run: cargo codspeed run
token: ${{ secrets.CODSPEED_TOKEN }}
build-upload-binaries:
# needs: publish
strategy:
fail-fast: false
matrix:
include:
- target: x86_64-unknown-linux-gnu
- target: aarch64-unknown-linux-gnu
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: moonrepo/setup-rust@v0
with:
targets: ${{ matrix.target }}
cache-target: ${{ matrix.target }}/release
- name: Setup environment for target
if: ${{ matrix.setup }}
run: ${{ matrix.setup }}
- run: cargo build --release --features vendored-openssl --bin cargo-codspeed --target ${{ matrix.target }}