diff options
| author | Fabian Mastenbroek <mail.fabianm@gmail.com> | 2022-04-22 16:03:33 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-04-22 16:03:33 +0200 |
| commit | f2706efb0cb1b3df9f4f5722591dd4b73188cc5c (patch) | |
| tree | 302913ed479cfb05a9581d4b6eed356aec1fd718 /.github/workflows | |
| parent | 578394adfb5f1f835b7d8e24f68094968706dfaa (diff) | |
| parent | f5d631b474567c87bcd41f8567ba66fda2a83050 (diff) | |
merge: Update build process (#74)
This pull request brings several updates to the build process as well as new dependency versions. This should resolve several issues that occur during the build process (such as Quarkus or JaCoCo complaining).
## Implementation Notes :hammer_and_pick:
* Remove use of lint-staged
* Migrate from Yarn to NPM
* Update to Kotlin 1.6.21
* Update to Quarkus 2.8.1.Final
* Use JaCoCo 0.8.8
* Test Java 18
## External Dependencies :four_leaf_clover:
* Kotlin, Quarkus, JaCoCo, NPM
## Breaking API Changes :warning:
* N/A
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/build.yml | 6 | ||||
| -rw-r--r-- | .github/workflows/test-gradle-rc.yml | 2 | ||||
| -rw-r--r-- | .github/workflows/test-java-ea.yml | 2 |
3 files changed, 5 insertions, 5 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index deaca7b9..f60516d7 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -8,15 +8,15 @@ on: jobs: build: - name: Build (Java ${{ matrix.java }}) + name: Build (Java ${{ matrix.java }} - ${{ matrix.os }}) runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest] - java: [11, 17] + java: [11, 17, 18] include: - os: windows-latest - java: 17 + java: 18 steps: - name: Checkout repository uses: actions/checkout@v3 diff --git a/.github/workflows/test-gradle-rc.yml b/.github/workflows/test-gradle-rc.yml index a80e8d82..a39d36d7 100644 --- a/.github/workflows/test-gradle-rc.yml +++ b/.github/workflows/test-gradle-rc.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/setup-java@v3 with: distribution: 'zulu' - java-version: 17 + java-version: 18 - uses: gradle/gradle-build-action@v2 with: gradle-version: release-candidate diff --git a/.github/workflows/test-java-ea.yml b/.github/workflows/test-java-ea.yml index 88381028..f3c31928 100644 --- a/.github/workflows/test-java-ea.yml +++ b/.github/workflows/test-java-ea.yml @@ -11,7 +11,7 @@ jobs: - uses: actions/setup-java@v3 with: distribution: 'zulu' - java-version: 18-ea + java-version: 19-ea - uses: gradle/gradle-build-action@v2 with: gradle-version: release-candidate |
