We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c89d99 commit ce3f8a0Copy full SHA for ce3f8a0
.github/workflows/libloading.yml
@@ -44,10 +44,10 @@ jobs:
44
- i686-pc-windows-gnu
45
include:
46
- rust_target: x86_64-pc-windows-gnu
47
- mingw_path: C:/M/mingw64/bin
+ mingw_path: C:\M\mingw64\bin
48
package: mingw-w64-x86_64-gcc
49
- rust_target: i686-pc-windows-gnu
50
- mingw_path: C:/M/mingw32/bin
+ mingw_path: C:\M\mingw32\bin
51
package: mingw-w64-i686-gcc
52
steps:
53
- uses: actions/checkout@v2
@@ -57,9 +57,10 @@ jobs:
57
- uses: msys2/setup-msys2@v2
58
with:
59
install: ${{ matrix.package }}
60
- update: true
61
- location: C:/M
62
- - run: msys2 -c "cargo test --target ${{ matrix.rust_target }}"
+ location: C:\M
+ - run: |
+ $env:PATH = "${{ matrix.mingw_path }};$env:PATH"
63
+ cargo test --target ${{ matrix.rust_target }}
64
env:
65
TARGET: ${{ matrix.rust_target }}
66
0 commit comments