We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 51d3ab1 commit 3689d04Copy full SHA for 3689d04
action.yml
@@ -131,8 +131,10 @@ runs:
131
if: inputs.use-cross == 'true'
132
shell: bash
133
working-directory: ${{ inputs.rust-project-path }}
134
+ # the RUSTFLAGS are a hack around cross build errors on certain setups
135
+ # https://github.com/cross-rs/cross/issues/1561
136
run: |
- cross +${{ inputs.rust-toolchain }} test --all \
137
+ RUSTFLAGS="" cross +${{ inputs.rust-toolchain }} test --all \
138
--features "${{ inputs.features }}" \
139
${{ inputs.no-default-features == 'true' && '--no-default-features' || '' }} \
140
${{ inputs.target != '' && format('--target "{0}"', inputs.target) || '' }} \
0 commit comments