-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Bump version.tycho from 3.0.5 to 4.0.4
Also raise minimum Maven version from 3.6.3 to 3.9.0 and use Maven container instead of installed Maven since installed Maven is still 3.8.8 at this time. Split main workflow into 2 jobs, one to build native binaries and the other to use Maven container.
- Loading branch information
Showing
126 changed files
with
2,636 additions
and
2,573 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 |
---|---|---|
@@ -1,22 +1,28 @@ | ||
# Runs whenever a pull request is created, modified, or reopened | ||
|
||
name: RITE Integration Workflow | ||
|
||
# Runs whenever a pull request is created, reopened, or modified | ||
|
||
on: | ||
pull_request: | ||
types: [ opened, reopened, synchronize ] | ||
workflow_dispatch: | ||
|
||
# Builds RITE source with Java and Maven | ||
# Caches Maven dependencies | ||
# Runs integration workflow as a CI check: | ||
# - Builds RITE source and runs unit tests | ||
|
||
jobs: | ||
integration: | ||
container: | ||
image: maven:${{ matrix.maven-version }} | ||
volumes: | ||
- /usr/bin/docker:/usr/bin/docker | ||
- /var/run/docker.sock:/var/run/docker.sock | ||
runs-on: ${{ matrix.os }} | ||
strategy: | ||
matrix: | ||
distribution: [ temurin ] | ||
java-version: [ 17 ] | ||
maven-version: [ 3.9.5 ] | ||
os: [ ubuntu-22.04 ] | ||
|
||
steps: | ||
|
@@ -26,7 +32,7 @@ jobs: | |
- name: Set up Java and Maven | ||
uses: actions/[email protected] | ||
with: | ||
#cache: maven | ||
cache: maven | ||
distribution: ${{ matrix.distribution }} | ||
java-version: ${{ matrix.java-version }} | ||
|
||
|
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
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
Oops, something went wrong.