Skip to content

Commit 71be788

Browse files
committed
Revert "Upgrade checkout and setup-java GH Actions"
This reverts commit 379f378.
1 parent 379f378 commit 71be788

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

.github/workflows/ci-4.x.yml

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,6 @@ jobs:
8383
profile: 'Oracle-23'
8484
module: 'vertx-oracle-client'
8585
runs-on: ${{ matrix.os }}
86-
env:
87-
PROFILE_ARG: ${{ matrix.profile && format('-P {0}', matrix.profile) || '' }}
8886
steps:
8987
- name: Checkout
9088
uses: actions/checkout@v2
@@ -93,12 +91,10 @@ jobs:
9391
with:
9492
java-version: ${{ matrix.jdk }}
9593
distribution: temurin
96-
- name: Build without tests
97-
run: |
98-
mvn -s .github/maven-ci-settings.xml -q clean install -B $PROFILE_ARG -pl :${{ matrix.module }} -am -DskipTests
99-
- name: Run tests for the target module
94+
- name: Run tests
10095
run: |
101-
mvn -s .github/maven-ci-settings.xml -q verify -B $PROFILE_ARG -pl :${{ matrix.module }}
96+
PROFILE_ARG="${{ matrix.profile && format('-P {0}', matrix.profile) || '' }}"
97+
mvn -s .github/maven-ci-settings.xml -q clean verify -B $PROFILE_ARG -pl :${{ matrix.module }} -am
10298
Deploy:
10399
name: Deploy to OSSRH
104100
if: ${{ github.repository_owner == 'eclipse-vertx' && (github.event_name == 'push' || github.event_name == 'schedule') }}

0 commit comments

Comments
 (0)