Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 12 additions & 2 deletions .github/workflows/daily_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ name: Daily CI
on:
schedule:
- cron: "00 15 * * 1-5"
workflow_dispatch:

jobs:
getVersion:
Expand Down Expand Up @@ -63,12 +64,21 @@ jobs:
with:
dafny: ${{needs.getVersion.outputs.version}}

daily-dafny-test-vectors:
daily-dafny-keyring-test-vectors:
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
needs: getVersion
uses: ./.github/workflows/library_interop_test_vectors.yml
uses: ./.github/workflows/library_interop_keyring_test_vectors.yml
with:
dafny: ${{needs.getVersion.outputs.version}}
secrets: inherit
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

we might not need this anymore... since the repos we are accessing are now public

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I will merge as-is and we can fix later.
CI takes over an hour, and this is blocking me from releasing new Python MPL/ESDK.
Plus, this is already committed in other places.


pr-dafny-mkp-keyring-legacy-test-vectors:
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
needs: getVersion
uses: ./.github/workflows/library_interop_mkp_test_vectors.yml
with:
dafny: ${{needs.getVersion.outputs.version}}
secrets: inherit

daily-dafny-legacy-test-vectors:
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
Expand Down
Loading