Skip to content

Commit dee7b1e

Browse files
committed
ci: Install the cross-compiler toolchains
Use `apt-get` to install `mingw-w64` and `llvm`.
1 parent 387fffe commit dee7b1e

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

.github/workflows/rust.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,11 +11,12 @@ env:
1111

1212
jobs:
1313
build:
14-
14+
name: Build and test
1515
runs-on: ubuntu-latest
16-
1716
steps:
1817
- uses: actions/checkout@v3
18+
- name: Install the MinGW and LLVM toolchains
19+
run: sudo apt-get install -y mingw-w64 llvm
1920
- name: Build
2021
run: cargo build --verbose
2122
- name: Run tests

0 commit comments

Comments
 (0)