From f116f3e797de35e21e549956b3d7f10a8323c807 Mon Sep 17 00:00:00 2001 From: Michael Chernov <4ernovm@gmail.com> Date: Fri, 16 Feb 2024 13:47:37 +0200 Subject: [PATCH] Build fix --- .github/workflows/release.yml | 4 +++- .github/workflows/soot.yml | 4 +++- 2 files changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 55a8900a..9af3518b 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -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' diff --git a/.github/workflows/soot.yml b/.github/workflows/soot.yml index 353440c0..29c15acc 100644 --- a/.github/workflows/soot.yml +++ b/.github/workflows/soot.yml @@ -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'