Skip to content

Commit

Permalink
Build fix
Browse files Browse the repository at this point in the history
  • Loading branch information
4ernovm committed Feb 16, 2024
1 parent 8db3222 commit f116f3e
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,9 @@ jobs:

- name: Build with Maven
if: steps.cache-jars.outputs.cache-hit != 'true'
run: mvn clean package
run: |
cd java/common/
mvn clean package -X -DskipTests
- name: Upload JAR if cache missed
if: steps.cache-jars.outputs.cache-hit != 'true'
Expand Down
4 changes: 3 additions & 1 deletion .github/workflows/soot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,9 @@ jobs:

- name: Build with Maven
if: steps.cache-jars.outputs.cache-hit != 'true'
run: mvn clean package
run: |
cd java/common/
mvn clean package -X -DskipTests
- name: Upload JAR if cache missed
if: steps.cache-jars.outputs.cache-hit != 'true'
Expand Down

0 comments on commit f116f3e

Please sign in to comment.