Skip to content

Commit 4242372

Browse files
committed
Try to fix i686-pc-windows-gnu
1 parent ce105a4 commit 4242372

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/main.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,7 @@ jobs:
9797
shell: bash
9898

9999
# Non-linux tests just use our raw script
100-
- run: ./ci/run.sh ${{ matrix.target }}
100+
- run: ./ci/run.sh ${{ matrix.target }} ${{ matrix.rust }}
101101
if: matrix.os != 'ubuntu-latest'
102102
shell: bash
103103

ci/run.sh

+2
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ esac
4545
NM=$(find $(rustc --print sysroot) \( -name llvm-nm -o -name llvm-nm.exe \) )
4646
if [ "$NM" = "" ]; then
4747
NM=${PREFIX}nm
48+
elif [ -n "$2" ]; then
49+
NM="rustup run $2 $NM"
4850
fi
4951

5052
# Look out for duplicated symbols when we include the compiler-rt (C) implementation

0 commit comments

Comments
 (0)