Skip to content

Commit d660172

Browse files
committed
Use sh script for CI
1 parent dbec132 commit d660172

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

.github/workflows/integration.sh

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
echo "INTEGRATION TESTS"
2+
3+
mvn --batch-mode --no-transfer-progress package -DspecificModule=prepare
4+
mvn --batch-mode --no-transfer-progress dependency:tree clean verify --fail-at-end -Dmaven.test.redirectTestOutputToFile=true

.github/workflows/integration.yml

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,8 @@ jobs:
2626
distribution: ${{ matrix.jdk-distribution }}
2727
java-version: ${{ matrix.jdk-version }}
2828
cache: 'maven'
29-
- name: Prepare server
30-
run: mvn --batch-mode --no-transfer-progress package -DspecificModule=prepare
3129
- name: Run Tests
32-
run: mvn --batch-mode --no-transfer-progress dependency:tree clean verify --fail-at-end -Dmaven.test.redirectTestOutputToFile=true
30+
run: bash ${GITHUB_WORKSPACE}/.github/workflows/integration.sh
3331
- uses: actions/upload-artifact@v4
3432
if: failure()
3533
with:

0 commit comments

Comments
 (0)