Skip to content

Commit

Permalink
Merge branch 'main' into xperf-misc
Browse files Browse the repository at this point in the history
  • Loading branch information
mstange authored Oct 4, 2024
2 parents 1fbf3c5 + da89b2f commit e53382d
Show file tree
Hide file tree
Showing 11 changed files with 290 additions and 352 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/nix-packaging.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- uses: cachix/install-nix-action@V27
- uses: cachix/install-nix-action@v30
with:
nix_path: nixpkgs=channel:nixos-23.11
# - uses: cachix/cachix-action@v10
Expand Down
10 changes: 7 additions & 3 deletions .github/workflows/rust.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
run: rustup target add ${{ matrix.target }}
#run: rustup target add ${{ matrix.target }}
run: rustup install 1.80 && rustup default 1.80 && rustup target add ${{ matrix.target }} && rustup component add clippy rustfmt
- if: ${{ matrix.is_musl }}
name: Install musl-tools
run: sudo apt-get install -y musl-tools
Expand Down Expand Up @@ -77,7 +78,9 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
run: rustup update stable && rustup default stable && rustup target add ${{ matrix.target }}
# 1.81 causes issues when running the tests
#run: rustup update stable && rustup default stable && rustup target add ${{ matrix.target }}
run: rustup install 1.80 && rustup default 1.80 && rustup target add ${{ matrix.target }} && rustup component add clippy rustfmt
- name: Install cross
# Latest cross release 0.2.5 fails to link binaries for the `aarch64-linux-android` target. A release is pending.
# Use a specific commit until the release is out. See https://github.com/cross-rs/cross/issues/1222
Expand All @@ -103,7 +106,8 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Install Rust
run: rustup target add ${{ matrix.target }}
#run: rustup target add ${{ matrix.target }}
run: rustup install 1.80 && rustup default 1.80 && rustup target add ${{ matrix.target }} && rustup component add clippy rustfmt
- name: Check
run: cargo check --workspace --verbose --target=${{ matrix.target }}
- name: Clippy
Expand Down
Loading

0 comments on commit e53382d

Please sign in to comment.