-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: Use GitHub Actions to run tests
- Loading branch information
Showing
3 changed files
with
156 additions
and
7 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,137 @@ | ||
name: Run Tests | ||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v1 | ||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: temurin | ||
java-version: | | ||
8 | ||
16 | ||
17 | ||
# Can't use setup-java for this because https://github.com/actions/setup-java/issues/366 | ||
- uses: actions/cache@v3 | ||
with: | ||
path: ~/.gradle/wrapper | ||
key: gradle-wrapper-${{ hashFiles('**/gradle-wrapper.properties') }} | ||
- uses: actions/cache@v3 | ||
with: | ||
path: ~/.gradle/caches | ||
key: gradle-caches-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle.properties', 'gradle/*.versions.toml') }} | ||
restore-keys: | | ||
gradle-caches-${{ hashFiles('**/*.gradle*') }} | ||
gradle-caches- | ||
- run: ./gradlew build -x integrationTest setupDownloadsApi --stacktrace | ||
|
||
- uses: actions/upload-artifact@v3 | ||
if: ${{ failure() || success() }} | ||
with: | ||
name: Raw Test Results | ||
path: "**/build/test-results/**/*.xml" | ||
retention-days: 1 # only for the report at the end | ||
|
||
- uses: actions/upload-artifact@v3 | ||
if: ${{ failure() }} | ||
with: | ||
name: Unit Test Results | ||
path: "**/build/reports/" | ||
|
||
- uses: actions/cache/save@v3 | ||
with: | ||
path: | | ||
**/.gradle | ||
**/build | ||
key: test-build-${{ github.run_id }}-${{ github.run_attempt }} | ||
|
||
prepare_integration_test_matrix: | ||
needs: build # don't even bother with tests if it doesn't even build | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/github-script@v6 | ||
id: create-matrix | ||
with: | ||
script: | | ||
const tests = [] | ||
for (platform of ["launchwrapper", "fabric"]) { | ||
const prefix = `integrationTest/${platform}/src/main/java/` | ||
for await (const file of (await glob.create(`${prefix}/**/*Tests.java`)).globGenerator()) { | ||
const cls = file.slice(file.indexOf(prefix) + prefix.length, file.length - 5).replaceAll("/", ".") | ||
tests.push({ platform, "class": cls }) | ||
} | ||
} | ||
return tests | ||
github-token: dummy # we don't need one but it'll complain without one (when running locally via act) | ||
outputs: | ||
matrix: ${{ steps.create-matrix.outputs.result }} | ||
|
||
integration_tests: | ||
needs: | ||
- prepare_integration_test_matrix | ||
- build # we'll want to re-use the caches it produces | ||
strategy: | ||
fail-fast: false | ||
max-parallel: 1 | ||
matrix: | ||
test: ${{ fromJson(needs.prepare_integration_test_matrix.outputs.matrix) }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: actions/cache/restore@v3 | ||
with: | ||
path: | | ||
**/.gradle | ||
**/build | ||
key: test-build-${{ github.run_id }}-${{ github.run_attempt }} | ||
fail-on-cache-miss: true | ||
|
||
- uses: actions/setup-java@v3 | ||
with: | ||
distribution: temurin | ||
java-version: | | ||
8 | ||
16 | ||
17 | ||
- uses: actions/cache/restore@v3 | ||
with: | ||
path: ~/.gradle/wrapper | ||
key: gradle-wrapper-${{ hashFiles('**/gradle-wrapper.properties') }} | ||
- uses: actions/cache/restore@v3 | ||
with: | ||
path: ~/.gradle/caches | ||
key: gradle-caches-${{ hashFiles('**/*.gradle*') }}-${{ hashFiles('**/gradle.properties', 'gradle/*.versions.toml') }} | ||
|
||
- run: ./gradlew :integrationTest:${{ matrix.test.platform }}:integrationTest --tests ${{ matrix.test.class }} --stacktrace --info | ||
|
||
- uses: actions/upload-artifact@v3 | ||
if: ${{ failure() || success() }} | ||
with: | ||
name: Raw Test Results | ||
path: integrationTest/${{ matrix.test.platform }}/build/test-results/**/*.xml | ||
retention-days: 1 # only for the report at the end | ||
|
||
- uses: actions/upload-artifact@v3 | ||
if: ${{ failure() }} | ||
with: | ||
name: ${{ matrix.test.platform }}:${{ matrix.test.class }} Results | ||
path: integrationTest/${{ matrix.test.platform }}/build/reports/ | ||
|
||
test_report: | ||
runs-on: ubuntu-latest | ||
needs: [build, integration_tests] | ||
if: ${{ !cancelled() }} | ||
steps: | ||
- name: Download artifacts | ||
uses: actions/download-artifact@v3 | ||
with: | ||
path: artifacts | ||
- name: Publish test report | ||
uses: EnricoMi/publish-unit-test-result-action@d93dbc08d265e4653da0c0af544bee2a851d3e38 # v2.10.0 | ||
with: | ||
junit_files: "artifacts/**/*.xml" |
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
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