Skip to content

Commit

Permalink
Fix unit test and update CI
Browse files Browse the repository at this point in the history
  • Loading branch information
galderz committed Dec 11, 2020
1 parent 0d3698b commit c4b8c73
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 9 deletions.
23 changes: 15 additions & 8 deletions .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,24 +24,31 @@ jobs:
run: mvn -B install --file pom.xml
env:
MAVEN_OPTS: "-Dmaven.repo.local=${{ github.workspace }}/repository"
- name: Compile example to build Labs 20.1
uses: jbangdev/jbang-action@v0.52.0
- name: Compile example to build Graal
uses: jbangdev/jbang-action@v0.56.0
with:
script: examples/labs_20_1.java
script: examples/graal.java
jbangargs: build -Dqollider.version=999-SNAPSHOT --verbose
env:
JBANG_REPO: "${{ github.workspace }}/repository"
- name: Compile example to build Labs 20.3
uses: jbangdev/jbang-action@v0.52.0
- name: Compile example to build Infinispan Quarkus native server
uses: jbangdev/jbang-action@v0.56.0
with:
script: examples/labs_20_3.java
script: examples/infinispan_quarkus.java
jbangargs: build -Dqollider.version=999-SNAPSHOT --verbose
env:
JBANG_REPO: "${{ github.workspace }}/repository"
- name: Compile example to build JDK
uses: jbangdev/jbang-action@v0.52.0
uses: jbangdev/jbang-action@v0.56.0
with:
script: examples/jdk_jdk.java
script: examples/jdk.java
jbangargs: build -Dqollider.version=999-SNAPSHOT --verbose
env:
JBANG_REPO: "${{ github.workspace }}/repository"
- name: Compile example to build Mandrel
uses: jbangdev/[email protected]
with:
script: examples/mandrel.java
jbangargs: build -Dqollider.version=999-SNAPSHOT --verbose
env:
JBANG_REPO: "${{ github.workspace }}/repository"
2 changes: 1 addition & 1 deletion src/test/java/org/mendrugo/qollider/tests/MandrelTest.java
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ void build()
)
, Expect.gitCloneBranch("graalvm/mx", "master", 1)
, Expect.gitCloneBranch("graalvm/mandrel-packaging", "master", 1)
, Expect.gitCloneBranch("graalvm/mandrel", "mandrel/20.2", 1)
, Expect.gitCloneBranch("graalvm/mandrel", "mandrel/20.3", 1)
, Expect.mandrelBuild()
);
}
Expand Down

0 comments on commit c4b8c73

Please sign in to comment.