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 0743764 commit 770b0a5Copy full SHA for 770b0a5
.github/workflows/ci-rs.yml
@@ -243,12 +243,14 @@ jobs:
243
244
tests-stable-llvm:
245
needs: changes
246
- if: ${{ needs.changes.outputs.llvm == 'true' && github.event_name == 'push'}}
+ if: ${{ ( needs.changes.outputs.llvm == 'true' && github.event_name == 'push' ) || needs.changes.outputs.override == 'true' }}
247
runs-on: ubuntu-latest
248
name: tests hugr-llvm
249
strategy:
250
matrix:
251
llvm-version:
252
+ # different strings for install action and feature name
253
+ # adapted from https://github.com/TheDan64/inkwell/blob/master/.github/workflows/test.yml
254
- ["14.0", "14-0"]
255
256
steps:
0 commit comments