Skip to content

Commit bd963aa

Browse files
authored
Remove -DskipTests from native image build steps (#90)
The -DskipTests flag was removed from the Maven commands for creating native images in the GitHub Actions workflow. This ensures that tests are not skipped during the build process for Mac, Linux, and Windows.
1 parent 084f614 commit bd963aa

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/tagged_release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,13 +81,13 @@ jobs:
8181

8282
- name: Creating native image (Mac)
8383
if: matrix.os == 'macos-13'
84-
run: mvn install -P native-image,native-test-config -DskipTests -Dos.platform=mac -Dmaven.wagon.httpconnectionManager.ttlSeconds=60
84+
run: mvn install -P native-image,native-test-config -Dos.platform=mac -Dmaven.wagon.httpconnectionManager.ttlSeconds=60
8585
env:
8686
TOKEN: ${{ secrets.GITHUB_TOKEN }}
8787

8888
- name: Creating native image (Linux)
8989
if: matrix.os == 'ubuntu-latest'
90-
run: mvn install -P native-image,native-test-config -DskipTests -Dos.platform=linux -Dmaven.wagon.httpconnectionManager.ttlSeconds=60
90+
run: mvn install -P native-image,native-test-config -Dos.platform=linux -Dmaven.wagon.httpconnectionManager.ttlSeconds=60
9191

9292
env:
9393
TOKEN: ${{ secrets.GITHUB_TOKEN }}
@@ -98,7 +98,7 @@ jobs:
9898

9999
- name: Creating native image (Win)
100100
if: matrix.os == 'windows-latest'
101-
run: mvn install -P native-image,native-test-config -DskipTests -D os.platform=win -D maven.wagon.httpconnectionManager.ttlSeconds=60
101+
run: mvn install -P native-image,native-test-config -D os.platform=win -D maven.wagon.httpconnectionManager.ttlSeconds=60
102102
env:
103103
TOKEN: ${{ secrets.GITHUB_TOKEN }}
104104

0 commit comments

Comments
 (0)