Skip to content

Commit

Permalink
Disable custom RUSTFLAGS added by toolchain action
Browse files Browse the repository at this point in the history
  • Loading branch information
filips123 committed Mar 29, 2024
1 parent b741528 commit 522a767
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/native.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -49,6 +49,7 @@ jobs:
toolchain: stable
components: clippy
cache: false
rustflags: ""

- name: Configure cache
uses: Swatinem/rust-cache@v2
Expand Down Expand Up @@ -80,6 +81,7 @@ jobs:
toolchain: nightly
components: rustfmt
cache: false
rustflags: ""

- name: Configure cache
uses: Swatinem/rust-cache@v2
Expand Down Expand Up @@ -138,6 +140,7 @@ jobs:
toolchain: stable
target: ${{ matrix.target }}
cache: false
rustflags: ""

- name: Configure cache
uses: Swatinem/rust-cache@v2
Expand All @@ -154,7 +157,7 @@ jobs:
run: |
# Use cross 0.2.4 for now because newer versions require too new glibc versions
# In the future, we should update cross and configure zig to link to older glibc
cargo install cross --git https://github.com/cross-rs/cross --rev 4645d937bdae6952d9df38eff3ecb91fd719c3bd
cargo install cross --git https://github.com/cross-rs/cross.git --rev 4645d937bdae6952d9df38eff3ecb91fd719c3bd
- name: Install Cargo DEB (Linux)
if: matrix.os == 'ubuntu-latest'
Expand Down

0 comments on commit 522a767

Please sign in to comment.