-
Notifications
You must be signed in to change notification settings - Fork 57
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #173 from dmlloyd/ci
Introduce CI
- Loading branch information
Showing
1 changed file
with
50 additions
and
0 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,50 @@ | ||
name: JBoss Parent CI Build | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
paths-ignore: | ||
- '.gitignore' | ||
- 'LICENSE' | ||
- 'NOTICE' | ||
- 'README*' | ||
pull_request: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
name: build | ||
|
||
steps: | ||
- name: Check out project | ||
uses: actions/checkout@v2 | ||
with: | ||
path: jboss-parent-pom | ||
|
||
- name: Set up the JDKs | ||
uses: actions/setup-java@v3 | ||
with: | ||
distribution: temurin | ||
architecture: x64 | ||
java-version: | | ||
11 | ||
17 | ||
- name: Install the parent POM snapshot | ||
run: | | ||
cd jboss-parent-pom | ||
mvn -B -ntp formatter:validate install | ||
- name: Check out WildFly Common | ||
uses: actions/checkout@v2 | ||
with: | ||
repository: wildfly/wildfly-common | ||
path: wildfly-common | ||
|
||
- name: Test WildFly Common with updated parent | ||
run: | | ||
cd wildfly-common | ||
mvn -B -ntp versions:update-parent -DallowSnapshots=true -N | ||
git diff pom.xml | ||
mvn -B -ntp install -Djava11.home=${{env.JAVA_HOME_11_X64}} |