Enable test reporting for Foresight (#14333)
* Enable test reporting for Foresight * Temporarily allow running CI on main This is to allow generating more data for Foresight
This commit is contained in:
parent
320320f419
commit
8d5c11a4a5
1 changed files with 55 additions and 0 deletions
55
.github/workflows/ci.yml
vendored
55
.github/workflows/ci.yml
vendored
|
@ -7,6 +7,7 @@ on:
|
|||
pull_request: {}
|
||||
schedule:
|
||||
- cron: '0 0 * * *'
|
||||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
DEFAULT_JDK_VERSION: 11
|
||||
|
@ -81,6 +82,15 @@ jobs:
|
|||
exit 1
|
||||
fi
|
||||
|
||||
- name: Analyze Test and/or Coverage Results
|
||||
uses: runforesight/foresight-test-kit-action@v1
|
||||
if: ( github.repository == 'keycloak/keycloak' ) && ( github.event_name == 'schedule' || github.event_name == 'push' ) && ( success() || failure() )
|
||||
with:
|
||||
api_key: ${{ secrets.FORESIGHT_API_KEY }}
|
||||
test_format: JUNIT
|
||||
test_framework: JUNIT
|
||||
test_path: '**/target/surefire-reports/*.xml'
|
||||
|
||||
- name: Unit test reports
|
||||
uses: actions/upload-artifact@v3
|
||||
if: failure()
|
||||
|
@ -118,6 +128,15 @@ jobs:
|
|||
exit 1
|
||||
fi
|
||||
|
||||
- name: Analyze Test and/or Coverage Results
|
||||
uses: runforesight/foresight-test-kit-action@v1
|
||||
if: ( github.repository == 'keycloak/keycloak' ) && ( github.event_name == 'schedule' || github.event_name == 'push' ) && ( success() || failure() )
|
||||
with:
|
||||
api_key: ${{ secrets.FORESIGHT_API_KEY }}
|
||||
test_format: JUNIT
|
||||
test_framework: JUNIT
|
||||
test_path: 'testsuite/model/target/surefire-reports/*.xml'
|
||||
|
||||
- name: Model test reports
|
||||
uses: actions/upload-artifact@v3
|
||||
if: failure()
|
||||
|
@ -193,6 +212,15 @@ jobs:
|
|||
find . -path '*/target/surefire-reports/*.xml' | zip -q reports-${{ matrix.server }}-base-tests-${{ matrix.tests }}.zip -@
|
||||
exit $TEST_RESULT
|
||||
|
||||
- name: Analyze Test and/or Coverage Results
|
||||
uses: runforesight/foresight-test-kit-action@v1
|
||||
if: ( github.repository == 'keycloak/keycloak' ) && ( github.event_name == 'schedule' || github.event_name == 'push' ) && ( success() || failure() )
|
||||
with:
|
||||
api_key: ${{ secrets.FORESIGHT_API_KEY }}
|
||||
test_format: JUNIT
|
||||
test_framework: JUNIT
|
||||
test_path: 'testsuite/integration-arquillian/tests/base/target/surefire-reports/*.xml'
|
||||
|
||||
- name: Base test reports
|
||||
uses: actions/upload-artifact@v3
|
||||
if: failure()
|
||||
|
@ -280,6 +308,15 @@ jobs:
|
|||
find . -path '*/target/surefire-reports/*.xml' | zip -q reports-${{ matrix.server }}-base-tests-${{ matrix.tests }}.zip -@
|
||||
exit $TEST_RESULT
|
||||
|
||||
- name: Analyze Test and/or Coverage Results
|
||||
uses: runforesight/foresight-test-kit-action@v1
|
||||
if: ( github.repository == 'keycloak/keycloak' ) && ( github.event_name == 'schedule' || github.event_name == 'push' ) && ( success() || failure() )
|
||||
with:
|
||||
api_key: ${{ secrets.FORESIGHT_API_KEY }}
|
||||
test_format: JUNIT
|
||||
test_framework: JUNIT
|
||||
test_path: 'testsuite/integration-arquillian/tests/base/target/surefire-reports/*.xml'
|
||||
|
||||
- name: Base test reports
|
||||
uses: actions/upload-artifact@v3
|
||||
if: failure()
|
||||
|
@ -331,6 +368,15 @@ jobs:
|
|||
find . -path '*/target/surefire-reports/*.xml' | zip -q reports-quarkus-cluster-tests.zip -@
|
||||
exit $TEST_RESULT
|
||||
|
||||
- name: Analyze Test and/or Coverage Results
|
||||
uses: runforesight/foresight-test-kit-action@v1
|
||||
if: ( github.repository == 'keycloak/keycloak' ) && ( github.event_name == 'schedule' || github.event_name == 'push' ) && ( success() || failure() )
|
||||
with:
|
||||
api_key: ${{ secrets.FORESIGHT_API_KEY }}
|
||||
test_format: JUNIT
|
||||
test_framework: JUNIT
|
||||
test_path: 'testsuite/integration-arquillian/tests/base/target/surefire-reports/*.xml'
|
||||
|
||||
- name: Quarkus cluster test reports
|
||||
uses: actions/upload-artifact@v3
|
||||
if: failure()
|
||||
|
@ -390,6 +436,15 @@ jobs:
|
|||
TEST_RESULT=${PIPESTATUS[0]}
|
||||
exit $TEST_RESULT
|
||||
|
||||
- name: Analyze Test and/or Coverage Results
|
||||
uses: runforesight/foresight-test-kit-action@v1
|
||||
if: ( github.repository == 'keycloak/keycloak' ) && ( github.event_name == 'schedule' || github.event_name == 'push' ) && ( success() || failure() )
|
||||
with:
|
||||
api_key: ${{ secrets.FORESIGHT_API_KEY }}
|
||||
test_format: JUNIT
|
||||
test_framework: JUNIT
|
||||
test_path: 'quarkus/tests/integration/target/surefire-reports/*.xml'
|
||||
|
||||
- name: Quarkus test reports
|
||||
uses: actions/upload-artifact@v3
|
||||
if: failure()
|
||||
|
|
Loading…
Reference in a new issue