|
87 | 87 | set -euo pipefail
|
88 | 88 | cd rust
|
89 | 89 | cargo nextest run \
|
90 |
| - --workspace --features=artifact-graph --retries=10 --no-fail-fast --profile=ci \ |
91 |
| - simulation_tests::kcl_samples \ |
92 |
| - 2>&1 | tee /tmp/github-actions.log |
| 90 | + --workspace --features=artifact-graph --retries=10 --no-fail-fast --profile=ci \ |
| 91 | + simulation_tests::kcl_samples \ |
| 92 | + 2>&1 | tee /tmp/github-actions.log |
93 | 93 | env:
|
94 | 94 | KITTYCAD_API_TOKEN: ${{secrets.KITTYCAD_API_TOKEN_DEV}}
|
95 | 95 | ZOO_HOST: https://api.dev.zoo.dev
|
@@ -178,19 +178,17 @@ jobs:
|
178 | 178 | shell: bash
|
179 | 179 | run: |-
|
180 | 180 | cp nextest-archive.tar.zst rust/nextest-archive.tar.zst
|
181 |
| - cd rust |
| 181 | + pushd rust |
182 | 182 | cargo nextest run \
|
183 |
| - --retries=10 --no-fail-fast --profile=ci --archive-file nextest-archive.tar.zst \ |
184 |
| - --partition count:${{ matrix.partitionIndex}}/${{ matrix.partitionTotal }} \ |
185 |
| - 2>&1 | tee /tmp/github-actions.log |
| 183 | + --retries=10 --no-fail-fast --profile=ci --archive-file nextest-archive.tar.zst \ |
| 184 | + --partition count:${{ matrix.partitionIndex}}/${{ matrix.partitionTotal }} \ |
| 185 | + 2>&1 | tee /tmp/github-actions.log || true # let TAB determine failure |
| 186 | + popd |
| 187 | + .github/ci-cd-scripts/upload-results.sh |
186 | 188 | env:
|
187 | 189 | KITTYCAD_API_TOKEN: ${{secrets.KITTYCAD_API_TOKEN_DEV}}
|
188 | 190 | ZOO_HOST: https://api.dev.zoo.dev
|
189 | 191 | RUST_MIN_STACK: 10485760000
|
190 |
| - - name: Upload results |
191 |
| - if: always() |
192 |
| - run: .github/ci-cd-scripts/upload-results.sh |
193 |
| - env: |
194 | 192 | TAB_API_URL: ${{ secrets.TAB_API_URL }}
|
195 | 193 | TAB_API_KEY: ${{ secrets.TAB_API_KEY }}
|
196 | 194 | CI_COMMIT_SHA: ${{ github.event.pull_request.head.sha }}
|
@@ -231,9 +229,9 @@ jobs:
|
231 | 229 | run: |-
|
232 | 230 | cd rust/kcl-lib
|
233 | 231 | cargo nextest run \
|
234 |
| - --retries=10 --no-fail-fast --features=artifact-graph --profile=ci \ |
235 |
| - internal \ |
236 |
| - 2>&1 | tee /tmp/github-actions.log |
| 232 | + --retries=10 --no-fail-fast --features=artifact-graph --profile=ci \ |
| 233 | + internal \ |
| 234 | + 2>&1 | tee /tmp/github-actions.log |
237 | 235 | env:
|
238 | 236 | TWENTY_TWENTY: overwrite
|
239 | 237 | INSTA_UPDATE: always
|
|
0 commit comments