Skip to content

Commit 8d321c7

Browse files
authored
Fix bug in Kani roller (#1193)
In a previous commit (#1190 / a49e91c), we introduced the `${{ matrix.branch }}` variable, but only one job in the file already had a "matrix" strategy. `roll_kani` did not, and so that variable is always empty.
1 parent e2577b1 commit 8d321c7

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/roll-pinned-toolchain-versions.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -115,6 +115,9 @@ jobs:
115115
token: ${{ secrets.GOOGLE_PR_CREATION_BOT_TOKEN }}
116116
roll_kani:
117117
runs-on: ubuntu-latest
118+
strategy:
119+
matrix:
120+
branch: ["main", "v0.7.x"]
118121
name: Roll pinned Kani version
119122
steps:
120123
- name: Checkout code

0 commit comments

Comments
 (0)