Skip to content

Commit

Permalink
Try to enable embedded server test without cleanWorkarea
Browse files Browse the repository at this point in the history
  • Loading branch information
cherylking committed Dec 4, 2020
1 parent 45d6bcc commit 748a813
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,11 @@ jobs:
# test against latest update of each major Java version, as well as specific updates of LTS versions:
os: [ubuntu-18.04, windows-latest]
RUNTIME: [ol, wlp]
RUNTIME_VERSION: [20.0.0.12, 20.0.0.6]
RUNTIME_VERSION: [20.0.0.12, 20.0.0.9]
java: [11, 8]
exclude:
- java: 8
RUNTIME_VERSION: 20.0.0.6
RUNTIME_VERSION: 20.0.0.9

name: ${{ matrix.RUNTIME }} ${{ matrix.RUNTIME_VERSION }}, Java ${{ matrix.java }}, ${{ matrix.os }}
steps:
Expand Down
6 changes: 4 additions & 2 deletions liberty-maven-plugin/src/it/basic-it/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,8 +61,8 @@
<artifactId>liberty-maven-plugin</artifactId>
<version>@pom.version@</version>
<configuration>
<!-- Set to false TEMPORARILY due to ci.ant issue 131 -->
<embedded>false</embedded>
<!-- Test embedded server -->
<embedded>true</embedded>
<assemblyArtifact>
<groupId>${project.groupId}</groupId>
<artifactId>assembly-server</artifactId>
Expand Down Expand Up @@ -152,6 +152,8 @@
<configuration>
<cleanDropins>true</cleanDropins>
<cleanApps>true</cleanApps>
<!-- Temporarily set this to false due to ci.ant issue 131 -->
<cleanWorkarea>false</cleanWorkarea>
</configuration>
</execution>
<execution>
Expand Down

0 comments on commit 748a813

Please sign in to comment.