|
9 | 9 | uses: ./.github/workflows/dafny_version.yml |
10 | 10 | getVerifyVersion: |
11 | 11 | uses: ./.github/workflows/dafny_verify_version.yml |
12 | | - pr-ci-format: |
| 12 | + # pr-ci-format: |
| 13 | + # needs: getVersion |
| 14 | + # uses: ./.github/workflows/library_format.yml |
| 15 | + # with: |
| 16 | + # dafny: ${{needs.getVersion.outputs.version}} |
| 17 | + # pr-ci-codegen: |
| 18 | + # needs: getVersion |
| 19 | + # uses: ./.github/workflows/ci_codegen.yml |
| 20 | + # with: |
| 21 | + # dafny: ${{needs.getVersion.outputs.version}} |
| 22 | + # pr-ci-verification: |
| 23 | + # needs: getVerifyVersion |
| 24 | + # uses: ./.github/workflows/library_dafny_verification.yml |
| 25 | + # with: |
| 26 | + # dafny: ${{needs.getVerifyVersion.outputs.version}} |
| 27 | + # pr-ci-test-vector-verification: |
| 28 | + # needs: getVerifyVersion |
| 29 | + # uses: ./.github/workflows/test_vector_verification.yml |
| 30 | + # with: |
| 31 | + # dafny: ${{needs.getVerifyVersion.outputs.version}} |
| 32 | + # pr-ci-java: |
| 33 | + # needs: getVersion |
| 34 | + # uses: ./.github/workflows/ci_test_java.yml |
| 35 | + # with: |
| 36 | + # dafny: ${{needs.getVersion.outputs.version}} |
| 37 | + # pr-ci-java-test-vectors: |
| 38 | + # needs: getVersion |
| 39 | + # uses: ./.github/workflows/ci_test_vector_java.yml |
| 40 | + # with: |
| 41 | + # dafny: ${{needs.getVersion.outputs.version}} |
| 42 | + # pr-ci-java-examples: |
| 43 | + # needs: getVersion |
| 44 | + # uses: ./.github/workflows/ci_examples_java.yml |
| 45 | + # with: |
| 46 | + # dafny: ${{needs.getVersion.outputs.version}} |
| 47 | + # pr-ci-net: |
| 48 | + # needs: getVersion |
| 49 | + # uses: ./.github/workflows/ci_test_net.yml |
| 50 | + # with: |
| 51 | + # 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}} |
| 57 | + pr-ci-go: |
13 | 58 | needs: getVersion |
14 | | - uses: ./.github/workflows/library_format.yml |
| 59 | + uses: ./.github/workflows/ci_test_go.yml |
15 | 60 | with: |
16 | 61 | dafny: ${{needs.getVersion.outputs.version}} |
17 | | - pr-ci-codegen: |
18 | | - needs: getVersion |
19 | | - uses: ./.github/workflows/ci_codegen.yml |
20 | | - with: |
21 | | - dafny: ${{needs.getVersion.outputs.version}} |
22 | | - pr-ci-verification: |
23 | | - needs: getVerifyVersion |
24 | | - uses: ./.github/workflows/library_dafny_verification.yml |
25 | | - with: |
26 | | - dafny: ${{needs.getVerifyVersion.outputs.version}} |
27 | | - pr-ci-test-vector-verification: |
28 | | - needs: getVerifyVersion |
29 | | - uses: ./.github/workflows/test_vector_verification.yml |
30 | | - with: |
31 | | - dafny: ${{needs.getVerifyVersion.outputs.version}} |
32 | | - pr-ci-java: |
33 | | - needs: getVersion |
34 | | - uses: ./.github/workflows/ci_test_java.yml |
35 | | - with: |
36 | | - dafny: ${{needs.getVersion.outputs.version}} |
37 | | - pr-ci-java-test-vectors: |
38 | | - needs: getVersion |
39 | | - uses: ./.github/workflows/ci_test_vector_java.yml |
40 | | - with: |
41 | | - dafny: ${{needs.getVersion.outputs.version}} |
42 | | - pr-ci-java-examples: |
43 | | - needs: getVersion |
44 | | - uses: ./.github/workflows/ci_examples_java.yml |
45 | | - with: |
46 | | - dafny: ${{needs.getVersion.outputs.version}} |
47 | | - pr-ci-net: |
48 | | - needs: getVersion |
49 | | - uses: ./.github/workflows/ci_test_net.yml |
50 | | - with: |
51 | | - 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}} |
57 | | - pr-ci-net-test-vectors: |
58 | | - needs: getVersion |
59 | | - uses: ./.github/workflows/ci_test_vector_net.yml |
60 | | - with: |
61 | | - dafny: ${{needs.getVersion.outputs.version}} |
62 | | - pr-ci-net-examples: |
63 | | - needs: getVersion |
64 | | - uses: ./.github/workflows/ci_examples_net.yml |
65 | | - with: |
66 | | - dafny: ${{needs.getVersion.outputs.version}} |
67 | | - pr-ci-all-required: |
68 | | - if: always() |
69 | | - needs: |
70 | | - - getVersion |
71 | | - - getVerifyVersion |
72 | | - - pr-ci-format |
73 | | - - pr-ci-codegen |
74 | | - - pr-ci-verification |
75 | | - - pr-ci-test-vector-verification |
76 | | - - pr-ci-java |
77 | | - - pr-ci-java-test-vectors |
78 | | - - pr-ci-java-examples |
79 | | - - pr-ci-net |
80 | | - - pr-ci-rust |
81 | | - - pr-ci-net-test-vectors |
82 | | - - pr-ci-net-examples |
83 | | - runs-on: ubuntu-22.04 |
84 | | - steps: |
85 | | - - name: Verify all required jobs passed |
86 | | - uses: re-actors/alls-green@release/v1 |
87 | | - with: |
88 | | - jobs: ${{ toJSON(needs) }} |
| 62 | + # pr-ci-net-test-vectors: |
| 63 | + # needs: getVersion |
| 64 | + # uses: ./.github/workflows/ci_test_vector_net.yml |
| 65 | + # with: |
| 66 | + # dafny: ${{needs.getVersion.outputs.version}} |
| 67 | + # pr-ci-net-examples: |
| 68 | + # needs: getVersion |
| 69 | + # uses: ./.github/workflows/ci_examples_net.yml |
| 70 | + # with: |
| 71 | + # dafny: ${{needs.getVersion.outputs.version}} |
| 72 | + # pr-ci-all-required: |
| 73 | + # if: always() |
| 74 | + # needs: |
| 75 | + # - getVersion |
| 76 | + # - getVerifyVersion |
| 77 | + # - pr-ci-format |
| 78 | + # - pr-ci-codegen |
| 79 | + # - pr-ci-verification |
| 80 | + # - pr-ci-test-vector-verification |
| 81 | + # - pr-ci-java |
| 82 | + # - pr-ci-java-test-vectors |
| 83 | + # - pr-ci-java-examples |
| 84 | + # - pr-ci-net |
| 85 | + # - pr-ci-rust |
| 86 | + # - pr-ci-net-test-vectors |
| 87 | + # - pr-ci-net-examples |
| 88 | + # runs-on: ubuntu-22.04 |
| 89 | + # steps: |
| 90 | + # - name: Verify all required jobs passed |
| 91 | + # uses: re-actors/alls-green@release/v1 |
| 92 | + # with: |
| 93 | + # jobs: ${{ toJSON(needs) }} |
0 commit comments