Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update versions tested and omit workarea clean for embedded server #132

Merged
merged 1 commit into from
Dec 3, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 11 additions & 7 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,23 +11,27 @@ on:

jobs:
build:
runs-on: ${{ matrix.os }}


# Steps represent a sequence of tasks that will be executed as part of the job
strategy:
fail-fast: false
matrix:
# test against latest update of each major Java version, as well as specific updates of LTS versions:
os: [ubuntu-16.04, windows-latest]
java: [ 8, 11 ]
WLP_VERSION: [ 20.0.0_09, 20.0.0_06 ]
os: [ubuntu-18.04, windows-latest]
WLP_VERSION: [20.0.0_12, 20.0.0_09]
java: [11, 8]
include:
# match up licenses to WLP versions
- WLP_VERSION: 20.0.0_12
WLP_LICENSE: L-CTUR-BUSMFE
- WLP_VERSION: 20.0.0_09
WLP_LICENSE: L-CTUR-BS3K2V
- WLP_VERSION: 20.0.0_06
WLP_LICENSE: L-CTUR-BPKJTD
exclude:
- java: 8
WLP_VERSION: 20.0.0_09

runs-on: ${{ matrix.os }}
name: WL ${{ matrix.WLP_VERSION }}, Java ${{ matrix.java }}, ${{ matrix.os }}
steps:
- name: Setup Java ${{ matrix.java }}
uses: joschi/setup-jdk@v2
Expand Down
2 changes: 1 addition & 1 deletion src/it/tests/deploy-war-it/build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@

<wlp:server ref="testServer" operation="stop" useEmbeddedServer="true" />

<wlp:clean ref="testServer" apps="true" dropins="true" />
<wlp:clean ref="testServer" workarea="false" apps="true" dropins="true" />
</target>

</project>