Skip to content

Commit 1b11528

Browse files
committed
use apt to install the windows gcc
the action we used before did not make the binary available somehow.
1 parent 639b4cc commit 1b11528

1 file changed

Lines changed: 3 additions & 4 deletions

File tree

.github/workflows/checks.yaml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -410,11 +410,10 @@ jobs:
410410
rustup toolchain install nightly --component miri
411411
cargo +nightly miri setup
412412
- name: Install gcc
413-
uses: awalsh128/cache-apt-pkgs-action@v1.4.3
414-
with:
415-
packages: gcc-mingw-w64-x86-64
416-
version: 1.0
417413
if: ${{ contains(matrix.target, 'windows') }}
414+
run: |
415+
sudo apt-get install gcc-mingw-w64-x86-64
416+
x86_64-w64-mingw32-gcc --help
418417
- name: Install cargo-nextest
419418
uses: taiki-e/install-action@56ab7930c591507f833cbaed864d201386d518a8
420419
with:

0 commit comments

Comments
 (0)