Skip to content

Commit 2b86238

Browse files
author
Lucas McDonald
committed
m
1 parent d3721d8 commit 2b86238

File tree

6 files changed

+32
-0
lines changed

6 files changed

+32
-0
lines changed

.github/workflows/daily_ci.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,11 @@ jobs:
6161
uses: ./.github/workflows/library_rust_tests.yml
6262
with:
6363
dafny: ${{needs.getVersion.outputs.version}}
64+
daily-ci-python:
65+
needs: getVersion
66+
uses: ./.github/workflows/ci_test_python.yml
67+
with:
68+
dafny: ${{needs.getVersion.outputs.version}}
6469
daily-ci-net-test-vectors:
6570
needs: getVersion
6671
uses: ./.github/workflows/ci_test_vector_net.yml

.github/workflows/manual.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -57,6 +57,11 @@ jobs:
5757
with:
5858
dafny: ${{ inputs.dafny }}
5959
regenerate-code: ${{ inputs.regenerate-code }}
60+
manual-ci-python:
61+
uses: ./.github/workflows/ci_test_python.yml
62+
with:
63+
dafny: ${{ inputs.dafny }}
64+
regenerate-code: ${{ inputs.regenerate-code }}
6065
manual-ci-net-test-vectors:
6166
uses: ./.github/workflows/ci_test_vector_net.yml
6267
with:

.github/workflows/mpl-head.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -73,6 +73,12 @@ jobs:
7373
with:
7474
dafny: ${{needs.getVersion.outputs.version}}
7575
mpl-head: true
76+
mpl-head-ci-python:
77+
needs: getVersion
78+
uses: ./.github/workflows/ci_test_python.yml
79+
with:
80+
dafny: ${{needs.getVersion.outputs.version}}
81+
mpl-head: true
7682
mpl-head-ci-net-test-vectors:
7783
needs: getVersion
7884
uses: ./.github/workflows/ci_test_vector_net.yml

.github/workflows/nightly.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,12 @@ jobs:
5858
with:
5959
dafny: "nightly-latest"
6060
regenerate-code: true
61+
dafny-nightly-python:
62+
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
63+
uses: ./.github/workflows/ci_test_python.yml
64+
with:
65+
dafny: "nightly-latest"
66+
regenerate-code: true
6167
dafny-nightly-test-vectors-net:
6268
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
6369
uses: ./.github/workflows/ci_test_vector_net.yml

.github/workflows/pull.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -54,6 +54,11 @@ jobs:
5454
uses: ./.github/workflows/library_rust_tests.yml
5555
with:
5656
dafny: ${{needs.getVersion.outputs.version}}
57+
pr-ci-python:
58+
needs: getVersion
59+
uses: ./.github/workflows/ci_test_python.yml
60+
with:
61+
dafny: ${{needs.getVersion.outputs.version}}
5762
pr-ci-net-test-vectors:
5863
needs: getVersion
5964
uses: ./.github/workflows/ci_test_vector_net.yml

.github/workflows/push.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,11 @@ jobs:
5656
uses: ./.github/workflows/library_rust_tests.yml
5757
with:
5858
dafny: ${{needs.getVersion.outputs.version}}
59+
pr-ci-python:
60+
needs: getVersion
61+
uses: ./.github/workflows/ci_test_python.yml
62+
with:
63+
dafny: ${{needs.getVersion.outputs.version}}
5964
pr-ci-net-test-vectors:
6065
needs: getVersion
6166
uses: ./.github/workflows/ci_test_vector_net.yml

0 commit comments

Comments
 (0)