mirror of
https://github.com/GitJournal/GitJournal.git
synced 2025-08-06 15:21:21 +08:00
CI: Disable Test reporting
I've wasted enough time on this.
This commit is contained in:
14
.github/workflows/android.yml
vendored
14
.github/workflows/android.yml
vendored
@ -20,13 +20,13 @@ jobs:
|
|||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: Test
|
- name: Test
|
||||||
run: ./scripts/test.sh
|
run: ./scripts/test.sh
|
||||||
- name: Test Report
|
# - name: Test Report
|
||||||
uses: dorny/test-reporter@v1
|
# uses: dorny/test-reporter@v1
|
||||||
if: success() || failure()
|
# if: success() || failure()
|
||||||
with:
|
# with:
|
||||||
name: Unit Tests ${{ matrix.os }} ${{ matrix.sdk }}
|
# name: Unit Tests ${{ matrix.os }} ${{ matrix.sdk }}
|
||||||
path: test-results.xml
|
# path: test-results.xml
|
||||||
reporter: jest-junit
|
# reporter: jest-junit
|
||||||
- name: Unlock Secrets
|
- name: Unlock Secrets
|
||||||
env:
|
env:
|
||||||
GITCRYPT_KEY: ${{ secrets.GITCRYPT_KEY }}
|
GITCRYPT_KEY: ${{ secrets.GITCRYPT_KEY }}
|
||||||
|
14
.github/workflows/linux.yml
vendored
14
.github/workflows/linux.yml
vendored
@ -20,13 +20,13 @@ jobs:
|
|||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
- name: Test
|
- name: Test
|
||||||
run: ./scripts/test.sh
|
run: ./scripts/test.sh
|
||||||
- name: Test Report
|
# - name: Test Report
|
||||||
uses: dorny/test-reporter@v1
|
# uses: dorny/test-reporter@v1
|
||||||
if: success() || failure()
|
# if: success() || failure()
|
||||||
with:
|
# with:
|
||||||
name: Unit Tests ${{ matrix.os }} ${{ matrix.sdk }}
|
# name: Unit Tests ${{ matrix.os }} ${{ matrix.sdk }}
|
||||||
path: test-results.xml
|
# path: test-results.xml
|
||||||
reporter: jest-junit
|
# reporter: jest-junit
|
||||||
- name: Unlock Secrets
|
- name: Unlock Secrets
|
||||||
env:
|
env:
|
||||||
GITCRYPT_KEY: ${{ secrets.GITCRYPT_KEY }}
|
GITCRYPT_KEY: ${{ secrets.GITCRYPT_KEY }}
|
||||||
|
14
.github/workflows/macos.yml
vendored
14
.github/workflows/macos.yml
vendored
@ -22,13 +22,13 @@ jobs:
|
|||||||
flutter-version: "2.8.1"
|
flutter-version: "2.8.1"
|
||||||
- name: Test
|
- name: Test
|
||||||
run: ./scripts/test.sh
|
run: ./scripts/test.sh
|
||||||
- name: Test Report
|
# - name: Test Report
|
||||||
uses: dorny/test-reporter@v1
|
# uses: dorny/test-reporter@v1
|
||||||
if: success() || failure()
|
# if: success() || failure()
|
||||||
with:
|
# with:
|
||||||
name: Unit Tests ${{ matrix.os }} ${{ matrix.sdk }}
|
# name: Unit Tests ${{ matrix.os }} ${{ matrix.sdk }}
|
||||||
path: test-results.xml
|
# path: test-results.xml
|
||||||
reporter: jest-junit
|
# reporter: jest-junit
|
||||||
- name: Unlock Secrets
|
- name: Unlock Secrets
|
||||||
env:
|
env:
|
||||||
GITCRYPT_KEY: ${{ secrets.GITCRYPT_KEY }}
|
GITCRYPT_KEY: ${{ secrets.GITCRYPT_KEY }}
|
||||||
|
@ -6,5 +6,6 @@
|
|||||||
|
|
||||||
set -eux pipefail
|
set -eux pipefail
|
||||||
|
|
||||||
flutter test --machine | tee test-results.json
|
flutter test
|
||||||
cat test-results.json | dart run junitreport:tojunit --output test-results.xml
|
# --machine | tee test-results.json
|
||||||
|
# cat test-results.json | dart run junitreport:tojunit --output test-results.xml
|
Reference in New Issue
Block a user