diff options
| author | zyoshoka <107108195+zyoshoka@users.noreply.github.com> | 2025-04-28 18:31:13 +0900 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-04-28 18:31:13 +0900 |
| commit | c3b9a5346fff59817b4bc165ae13bbb9715795fb (patch) | |
| tree | d6be5dd7c513612a467556cb541798a98ab3ba9d | |
| parent | Bump version to 2025.4.1-beta.7 (diff) | |
| download | misskey-c3b9a5346fff59817b4bc165ae13bbb9715795fb.tar.gz misskey-c3b9a5346fff59817b4bc165ae13bbb9715795fb.tar.bz2 misskey-c3b9a5346fff59817b4bc165ae13bbb9715795fb.zip | |
chore(ci): change the Test step to terminate with error in the federation test (#15903)
* chore(ci): change the Test step to terminate with error in the federation test
* chore(ci): always stop servers in the federation test
| -rw-r--r-- | .github/workflows/test-federation.yml | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/.github/workflows/test-federation.yml b/.github/workflows/test-federation.yml index fe30deb835..c739688dc9 100644 --- a/.github/workflows/test-federation.yml +++ b/.github/workflows/test-federation.yml @@ -71,18 +71,16 @@ jobs: docker compose logs | tail -n 300 exit 1 - name: Test - id: test - continue-on-error: true run: | cd packages/backend/test-federation docker compose run --no-deps tester - name: Log - if: ${{ steps.test.outcome == 'failure' }} + if: always() run: | cd packages/backend/test-federation docker compose logs - exit 1 - name: Stop servers + if: always() run: | cd packages/backend/test-federation docker compose down |