Merge pull request #35 from ls1intum/dependabot/gradle/kotlin-1.9.22 #46
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: End To End Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
end-to-end-tests: | |
name: End To End Tests | |
runs-on: [self-hosted, ase-large-android-sdk-34] | |
timeout-minutes: 60 | |
steps: | |
- name: Set Android Sdk Env | |
run: export ANDROID_HOME=/usr/lib/android-sdk | |
- uses: actions/checkout@v4 | |
- name: Set local.properties | |
run: echo "sdk.dir=/usr/lib/android-sdk" > local.properties | |
- name: Gradle Wrapper Verification | |
uses: gradle/wrapper-validation-action@v1 | |
# Sanity cleanup | |
- name: Stop all running docker containers | |
run: docker stop artemis-app artemis-mysql docker-artemis-app-setup | |
continue-on-error: true | |
- name: Remove all docker containers | |
run: docker rm artemis-app artemis-mysql docker-artemis-app-setup | |
if: success() || failure() | |
continue-on-error: true | |
- name: Launch docker containers | |
run: docker compose -f docker/e2e-tests.yml up -d artemis-app-setup | |
if: success() || failure() | |
- name: JDK setup | |
uses: actions/setup-java@v3 | |
with: | |
distribution: 'zulu' | |
java-version: 17 | |
- name: run tests | |
run: ./gradlew test --max-workers=4 -Dskip.unit-tests=true -Dskip.e2e=false -Dskip.debugVariants=true -Dskip.flavor.unrestricted=true -Dskip.flavor.beta=true | |
continue-on-error: true | |
- name: Test Report | |
uses: dorny/test-reporter@v1 | |
if: success() || failure() # run this step even if previous step failed | |
with: | |
name: Android End To End Test Results | |
path: test-outputs/**/*.xml | |
reporter: java-junit | |
fail-on-empty: 'false' | |
- name: Cleanup -> Stop all running docker containers | |
if: always() | |
run: docker stop artemis-app artemis-mysql docker-artemis-app-setup | |
continue-on-error: true | |
- name: Cleanup -> Remove all docker containers | |
if: always() | |
run: docker rm artemis-app artemis-mysql docker-artemis-app-setup | |
continue-on-error: true |