Skip to content

Commit

Permalink
Try Zulu and $JAVA_HOME for ubuntu-02
Browse files Browse the repository at this point in the history
  • Loading branch information
Griefed committed Nov 7, 2023
1 parent 5a6e126 commit a24380d
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
run: |
echo $JAVA_HOME
echo ${{ steps.java.outputs.path }}
- name: Build with Gradle
run: |
./gradlew -Pversion=${{ steps.branch-name.outputs.current_branch }} generateLicenseReport --info --full-stacktrace
Expand Down Expand Up @@ -135,7 +135,7 @@ jobs:

- name: Where are you, you little...
run: |
echo $JAVA_HOME
echo %JAVA_HOME%
echo ${{ steps.java.outputs.path }}
- name: Prepare wix-toolset
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:

- name: Where are you, you little...
run: |
echo $JAVA_HOME
echo %JAVA_HOME%
echo ${{ steps.java.outputs.path }}
- name: Prepare wix-toolset
Expand Down Expand Up @@ -228,6 +228,7 @@ jobs:
--verbose
- name: List
if: ${{ always() }}
run: dir serverpackcreator-app\build\dist

- name: Archive
Expand Down Expand Up @@ -316,7 +317,7 @@ jobs:
id: java
uses: actions/[email protected]
with:
distribution: 'temurin'
distribution: 'zulu'
java-version: '17'
check-latest: true
cache: 'gradle'
Expand Down Expand Up @@ -356,13 +357,14 @@ jobs:
--main-jar serverpackcreator-app-dev-plain.jar \
--name ServerPackCreator \
--resource-dir serverpackcreator-app/jpackagerResources \
--runtime-image "${{ steps.java.outputs.path }}" \
--runtime-image $JAVA_HOME \
--temp serverpackcreator-app/build/tmp/jpackager \
--type "app-image" \
--vendor "griefed.de" \
--verbose
- name: List
if: ${{ always() }}
run: ls -ahl serverpackcreator-app/build/dist

- name: Create AppImage
Expand Down

0 comments on commit a24380d

Please sign in to comment.