WorldSystem/.github/workflows/gradle.yml

82 lines
2.0 KiB
YAML
Raw Normal View History

name: Build
on: [push]
jobs:
build:
2022-08-21 20:38:42 +02:00
runs-on: ubuntu-22.04
# We want to run on external PRs, but not on our own internal PRs as they'll be run
# by the push to the branch.
if: github.event_name == 'push' || github.event.pull_request.head.repo.full_name != github.repository
steps:
2021-12-15 01:34:28 +01:00
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
2021-12-15 01:34:28 +01:00
java-version: 17
- name: Cache Gradle
id: cache-gradle
2023-04-22 18:11:28 +02:00
uses: actions/cache@v2.1.8
with:
path: ~/.gradle
key: ${{ runner.os }}-gradle
- uses: actions/checkout@v1
- name: Grant execute permission to gradlew
run: chmod +x gradlew
- name: Build
2023-02-27 11:29:24 +01:00
run: ./gradlew build -x test --warning-mode all
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload build artifacts
uses: actions/upload-artifact@v2
with:
path: "**/build/libs"
test:
2022-08-21 20:38:42 +02:00
runs-on: ubuntu-22.04
steps:
2021-12-15 01:34:28 +01:00
- name: Set up JDK 17
uses: actions/setup-java@v1
with:
2021-12-15 01:34:28 +01:00
java-version: 17
- name: Cache Gradle
id: cache-gradle
uses: actions/cache@v1
with:
path: ~/.gradle
key: ${{ runner.os }}-gradle
- uses: actions/checkout@v1
- name: Grant execute permission to gradlew
run: chmod +x gradlew
- name: Test
2023-02-27 11:29:24 +01:00
run: ./gradlew test --warning-mode all
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2021-12-15 01:34:28 +01:00
- name: Create Coverage
run: ./gradlew jacocoTestReport
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Upload CodeCov Report
uses: codecov/codecov-action@v1
with:
file: "**/build/reports/jacoco/**/*.xml"
2021-12-15 01:34:28 +01:00
- name: Publish Unit Test Results
uses: EnricoMi/publish-unit-test-result-action@v1.24
if: always()
with:
2021-12-15 01:34:28 +01:00
files: "**/build/test-results/**/*.xml"