Skip to content

Commit

Permalink
Depends on WF/boms
Browse files Browse the repository at this point in the history
  • Loading branch information
luck3y committed Sep 22, 2020
1 parent 8568aeb commit 5cad62c
Showing 1 changed file with 22 additions and 2 deletions.
24 changes: 22 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,13 +21,33 @@ jobs:
with:
token: ${{ secrets.GITHUB_TOKEN }}
- uses: actions/checkout@v2
with:
repository: wildfly/wildfly
path: wildfly
- uses: actions/checkout@v2
with:
repository: wildfly/boms
path: boms
- uses: actions/checkout@v2
with:
path: quickstarts
- name: Set up JDK ${{ matrix.java }}
uses: AdoptOpenJDK/install-jdk@v1
with:
version: ${{ matrix.jdk }}
impl: hotspot
- name: Run Tests
run: mvn -U -B -fae clean install '-DfailIfNotTests=true'
- name: Build Wildfly
run: |
cd wildfly
mvn -U -B -fae -DskipTests clean install
- name: Build Boms
run: |
cd boms
mvn -U -B -fae clean install
- name: Build Quickstarts
run: |
cd quickstarts
mvn -U -B -fae clean install
- uses: actions/upload-artifact@v2
if: failure()
with:
Expand Down

0 comments on commit 5cad62c

Please sign in to comment.