We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ce105a4 commit 4242372Copy full SHA for 4242372
.github/workflows/main.yml
@@ -97,7 +97,7 @@ jobs:
97
shell: bash
98
99
# Non-linux tests just use our raw script
100
- - run: ./ci/run.sh ${{ matrix.target }}
+ - run: ./ci/run.sh ${{ matrix.target }} ${{ matrix.rust }}
101
if: matrix.os != 'ubuntu-latest'
102
103
ci/run.sh
@@ -45,6 +45,8 @@ esac
45
NM=$(find $(rustc --print sysroot) \( -name llvm-nm -o -name llvm-nm.exe \) )
46
if [ "$NM" = "" ]; then
47
NM=${PREFIX}nm
48
+elif [ -n "$2" ]; then
49
+ NM="rustup run $2 $NM"
50
fi
51
52
# Look out for duplicated symbols when we include the compiler-rt (C) implementation
0 commit comments