|
8 | 8 | - main
|
9 | 9 |
|
10 | 10 | jobs:
|
11 |
| - interop-jd-translator: |
12 |
| - runs-on: ubuntu-latest |
13 |
| - steps: |
14 |
| - - name: Checkout repository |
15 |
| - uses: actions/checkout@v4 |
16 |
| - - name: Run interop-jd-translator |
17 |
| - run: sh ./test/message-generator/test/interop-jd-translator/interop-jd-translator.sh |
18 |
| - |
19 | 11 | interop-proxy-with-multi-ups:
|
20 | 12 | runs-on: ubuntu-latest
|
21 | 13 | steps:
|
|
76 | 68 | - name: Run pool-sri-test-close-channel
|
77 | 69 | run: sh ./test/message-generator/test/pool-sri-test-close-channel/pool-sri-test-close-channel.sh
|
78 | 70 |
|
79 |
| - pool-sri-test-extended_0: |
80 |
| - runs-on: ubuntu-latest |
81 |
| - steps: |
82 |
| - - name: Checkout repository |
83 |
| - uses: actions/checkout@v4 |
84 |
| - - name: Install cargo-llvm-cov |
85 |
| - run: cargo install cargo-llvm-cov |
86 |
| - - name: Run pool-sri-test-extended_0 |
87 |
| - run: sh ./test/message-generator/test/pool-sri-test-extended_0/pool-sri-test-extended_0.sh |
88 |
| - |
89 |
| - pool-sri-test-extended_1: |
90 |
| - runs-on: ubuntu-latest |
91 |
| - steps: |
92 |
| - - name: Checkout repository |
93 |
| - uses: actions/checkout@v4 |
94 |
| - - name: Install cargo-llvm-cov |
95 |
| - run: cargo install cargo-llvm-cov |
96 |
| - - name: Run pool-sri-test-extended_1 |
97 |
| - run: sh ./test/message-generator/test/pool-sri-test-extended_1/pool-sri-test-extended_1.sh |
98 |
| - |
99 | 71 | sv1-test:
|
100 | 72 | runs-on: ubuntu-latest
|
101 | 73 | timeout-minutes: 10
|
@@ -126,33 +98,27 @@ jobs:
|
126 | 98 | runs-on: ubuntu-latest
|
127 | 99 | if: always()
|
128 | 100 | needs: [
|
129 |
| - interop-jd-translator, |
130 | 101 | interop-proxy-with-multi-ups,
|
131 | 102 | interop-proxy-with-multi-ups-extended,
|
132 | 103 | jds-do-not-fail-on-wrong-tsdatasucc,
|
133 | 104 | jds-do-not-stackoverflow-when-no-token,
|
134 | 105 | jds-receive-solution-while-processing-declared-job,
|
135 | 106 | pool-sri-test-1-standard,
|
136 | 107 | pool-sri-test-close-channel,
|
137 |
| - pool-sri-test-extended_0, |
138 |
| - pool-sri-test-extended_1, |
139 | 108 | sv1-test,
|
140 | 109 | translation-proxy-broke-pool,
|
141 | 110 | translation-proxy-old-share
|
142 | 111 | ]
|
143 | 112 | steps:
|
144 | 113 | - name: Aggregate Results
|
145 | 114 | run: |
|
146 |
| - if [ "${{ needs.interop-jd-translator.result }}" != "success" ] || |
147 |
| - [ "${{ needs.interop-proxy-with-multi-ups.result }}" != "success" ] || |
| 115 | + if [ "${{ needs.interop-proxy-with-multi-ups.result }}" != "success" ] || |
148 | 116 | [ "${{ needs.interop-proxy-with-multi-ups-extended.result }}" != "success" ] ||
|
149 | 117 | [ "${{ needs.jds-do-not-fail-on-wrong-tsdatasucc.result }}" != "success" ] ||
|
150 | 118 | [ "${{ needs.jds-do-not-stackoverflow-when-no-token.result }}" != "success" ] ||
|
151 | 119 | [ "${{ needs.jds-receive-solution-while-processing-declared-job.result }}" != "success" ] ||
|
152 | 120 | [ "${{ needs.pool-sri-test-1-standard.result }}" != "success" ] ||
|
153 | 121 | [ "${{ needs.pool-sri-test-close-channel.result }}" != "success" ] ||
|
154 |
| - [ "${{ needs.pool-sri-test-extended_0.result }}" != "success" ] || |
155 |
| - [ "${{ needs.pool-sri-test-extended_1.result }}" != "success" ] || |
156 | 122 | [ "${{ needs.sv1-test.result }}" != "success" ] ||
|
157 | 123 | [ "${{ needs.translation-proxy-broke-pool.result }}" != "success" ] ||
|
158 | 124 | [ "${{ needs.translation-proxy-old-share.result }}" != "success" ]; then
|
|
0 commit comments