final adjustments

This commit is contained in:
Armin Schrenk
2022-12-05 22:59:42 +01:00
parent 83b198d491
commit 00a3692dcf
2 changed files with 2 additions and 2 deletions

View File

@@ -74,7 +74,7 @@ jobs:
}
$jfxPomVersion = (&mvn help:evaluate "-Dexpression=javafx.version" -q -DforceStdout) -split "\."
if ($jfxPomVersion[0] -ne $jfxJmodVersionAmd64[0]) {
Out-Error "Major part of JavaFX version in pom($($jfxPomVersion[0])) does not match the version of Jmods($($jfxJmodVersionAmd64[0])) "
Write-Error "Major part of JavaFX version in pom($($jfxPomVersion[0])) does not match the version of Jmods($($jfxJmodVersionAmd64[0])) "
exit 1
}
- name: Create orig.tar.gz with common/ libs/ mods/ jmods/

View File

@@ -45,7 +45,7 @@ jobs:
architecture: ${{ matrix.architecture }}
cache: 'maven'
- name: Ensure major jfx version in pom equals in jdk
if: ${{ matrix.architecture}} == 'x64'
if: ${{ !contains(matrix.os, 'self-hosted') }}
shell: pwsh
run: |
$jfxPomVersion = (&mvn help:evaluate "-Dexpression=javafx.version" -q -DforceStdout) -split "\."