-
Notifications
You must be signed in to change notification settings - Fork 261
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
71418b8
commit 99004a1
Showing
1 changed file
with
0 additions
and
25 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +0,0 @@ | ||
name: Check Deep Tests (Reusable Workflow) | ||
|
||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
check-deep-tests: | ||
runs-on: ubuntu-20.04 | ||
steps: | ||
- name: Checkout Dafny | ||
uses: actions/checkout@v4 | ||
with: | ||
path: dafny | ||
submodules: recursive | ||
- uses: actions/github-script@v6 | ||
if: github.repository_owner == 'dafny-lang' | ||
with: | ||
# Since nightly-build.yml always targets fixed branches now, rather than being parameterized by | ||
# branch, we can't effectively check "for a specific branch". | ||
# That means we have to be less precise for now and block all branches if any branch fails the deep nightly tests. | ||
script: | | ||
const script = require('${{ github.workspace }}/dafny/.github/workflows/check-for-workflow-run.js') | ||
console.log(script({github, context, core, | ||
workflow_id: 'nightly-build.yml', | ||
branch: 'master'})) | ||