Skip to content

Commit

Permalink
Merge pull request #449 from luck3y/gh_actions
Browse files Browse the repository at this point in the history
test for CI
  • Loading branch information
emmartins authored Sep 29, 2020
2 parents 1800789 + 5cad62c commit 9f07c80
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 9f07c80

Please sign in to comment.