Skip to content

Commit

Permalink
ci: fix missing getVersion in nightly Dafny CI (#883)
Browse files Browse the repository at this point in the history
  • Loading branch information
alex-chew authored Oct 21, 2024
1 parent 787f63a commit 15a134c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/nightly_dafny.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ on:
- cron: "30 16 * * *"

jobs:
getVersion:
# Don't run the cron builds on forks
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
uses: ./.github/workflows/dafny_version.yaml
dafny-nightly-format:
# Don't run the cron builds on forks
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
Expand Down Expand Up @@ -39,6 +43,7 @@ jobs:
regenerate-code: true
dafny-nightly-python:
needs: getVersion
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
uses: ./.github/workflows/library_python_tests.yml
with:
dafny: ${{needs.getVersion.outputs.version}}
Expand Down

0 comments on commit 15a134c

Please sign in to comment.