Skip to content

Commit 7a9c1ba

Browse files
committed
m
1 parent d09d11e commit 7a9c1ba

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
@@ -56,6 +56,11 @@ jobs:
5656
uses: ./.github/workflows/ci_test_net.yml
5757
with:
5858
dafny: ${{needs.getVersion.outputs.version}}
59+
daily-ci-rust:
60+
needs: getVersion
61+
uses: ./.github/workflows/library_rust_tests.yml
62+
with:
63+
dafny: ${{needs.getVersion.outputs.version}}
5964
daily-ci-net-test-vectors:
6065
needs: getVersion
6166
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
@@ -52,6 +52,11 @@ jobs:
5252
with:
5353
dafny: ${{ inputs.dafny }}
5454
regenerate-code: ${{ inputs.regenerate-code }}
55+
manual-ci-rust:
56+
uses: ./.github/workflows/library_rust_tests.yml
57+
with:
58+
dafny: ${{ inputs.dafny }}
59+
regenerate-code: ${{ inputs.regenerate-code }}
5560
manual-ci-net-test-vectors:
5661
uses: ./.github/workflows/ci_test_vector_net.yml
5762
with:

.github/workflows/mpl-head.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,12 @@ jobs:
6767
with:
6868
dafny: ${{needs.getVersion.outputs.version}}
6969
mpl-head: true
70+
mpl-head-ci-rust:
71+
needs: getVersion
72+
uses: ./.github/workflows/library_rust_tests.yml
73+
with:
74+
dafny: ${{needs.getVersion.outputs.version}}
75+
mpl-head: true
7076
mpl-head-ci-net-test-vectors:
7177
needs: getVersion
7278
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
@@ -52,6 +52,12 @@ jobs:
5252
with:
5353
dafny: "nightly-latest"
5454
regenerate-code: true
55+
dafny-nightly-rust:
56+
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
57+
uses: ./.github/workflows/library_rust_tests.yml
58+
with:
59+
dafny: "nightly-latest"
60+
regenerate-code: true
5561
dafny-nightly-test-vectors-net:
5662
if: github.event_name != 'schedule' || github.repository_owner == 'aws'
5763
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
@@ -49,6 +49,11 @@ jobs:
4949
uses: ./.github/workflows/ci_test_net.yml
5050
with:
5151
dafny: ${{needs.getVersion.outputs.version}}
52+
pr-ci-rust:
53+
needs: getVersion
54+
uses: ./.github/workflows/library_rust_tests.yml
55+
with:
56+
dafny: ${{needs.getVersion.outputs.version}}
5257
pr-ci-net-test-vectors:
5358
needs: getVersion
5459
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
@@ -51,6 +51,11 @@ jobs:
5151
uses: ./.github/workflows/ci_test_net.yml
5252
with:
5353
dafny: ${{needs.getVersion.outputs.version}}
54+
pr-ci-rust:
55+
needs: getVersion
56+
uses: ./.github/workflows/library_rust_tests.yml
57+
with:
58+
dafny: ${{needs.getVersion.outputs.version}}
5459
pr-ci-net-test-vectors:
5560
needs: getVersion
5661
uses: ./.github/workflows/ci_test_vector_net.yml

0 commit comments

Comments
 (0)