-
Notifications
You must be signed in to change notification settings - Fork 221
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* build: Update bundles-mac.yml (#735, #736) Run workflow on macOS-13 for Intel build * bump JDK and JavaFX versions (#752) * update early access job
- Loading branch information
1 parent
e10bbdd
commit 66546ee
Showing
9 changed files
with
64 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,8 @@ on: | |
pull_request: | ||
|
||
env: | ||
JAVA_VERSION: '23' | ||
JAVA_RELEASE: '23' | ||
JAVA_VERSION: '23.0.1' | ||
|
||
jobs: | ||
verify: | ||
|
@@ -20,7 +21,8 @@ jobs: | |
uses: oracle-actions/[email protected] | ||
with: | ||
website: jdk.java.net | ||
release: ${{ env.JAVA_VERSION }} | ||
release: ${{ env.JAVA_RELEASE }} | ||
version: ${{ env.JAVA_VERSION }} | ||
|
||
- name: Run Tests (Linux) | ||
if: runner.os == 'Linux' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,10 +6,14 @@ on: | |
project-version: | ||
required: true | ||
type: string | ||
java-version: | ||
java-release: | ||
default: '23' | ||
required: false | ||
type: string | ||
java-version: | ||
default: '23.0.1' | ||
required: false | ||
type: string | ||
|
||
jobs: | ||
build: | ||
|
@@ -21,7 +25,8 @@ jobs: | |
uses: oracle-actions/[email protected] | ||
with: | ||
website: jdk.java.net | ||
release: ${{ inputs.java-version }} | ||
release: ${{ inputs.java-release }} | ||
version: ${{ inputs.java-version }} | ||
|
||
- name: Cache Maven packages | ||
uses: actions/cache@v4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,12 +9,16 @@ on: | |
project-version: | ||
required: true | ||
type: string | ||
java-version: | ||
java-release: | ||
default: '23' | ||
required: false | ||
type: string | ||
java-version: | ||
default: '23.0.1' | ||
required: false | ||
type: string | ||
javafx-version: | ||
default: '23' | ||
default: '23.0.1' | ||
required: false | ||
type: string | ||
test: | ||
|
@@ -35,7 +39,8 @@ jobs: | |
uses: oracle-actions/[email protected] | ||
with: | ||
website: jdk.java.net | ||
release: ${{ inputs.java-version }} | ||
release: ${{ inputs.java-release }} | ||
version: ${{ inputs.java-version }} | ||
|
||
- name: Setup JavaFX | ||
id: javafx | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,12 +9,16 @@ on: | |
project-version: | ||
required: true | ||
type: string | ||
java-version: | ||
java-release: | ||
default: '23' | ||
required: false | ||
type: string | ||
java-version: | ||
default: '23.0.1' | ||
required: false | ||
type: string | ||
javafx-version: | ||
default: '23' | ||
default: '23.0.1' | ||
required: false | ||
type: string | ||
test: | ||
|
@@ -36,15 +40,16 @@ on: | |
required: true | ||
jobs: | ||
build: | ||
runs-on: macos-latest | ||
runs-on: macos-13 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Setup Java | ||
uses: oracle-actions/[email protected] | ||
with: | ||
website: jdk.java.net | ||
release: ${{ inputs.java-version }} | ||
release: ${{ inputs.java-release }} | ||
version: ${{ inputs.java-version }} | ||
|
||
- uses: Apple-Actions/import-codesign-certs@v1 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,12 +9,16 @@ on: | |
project-version: | ||
required: true | ||
type: string | ||
java-version: | ||
java-release: | ||
default: '23' | ||
required: false | ||
type: string | ||
java-version: | ||
default: '23.0.1' | ||
required: false | ||
type: string | ||
javafx-version: | ||
default: '23' | ||
default: '23.0.1' | ||
required: false | ||
type: string | ||
test: | ||
|
@@ -45,7 +49,8 @@ jobs: | |
uses: oracle-actions/[email protected] | ||
with: | ||
website: jdk.java.net | ||
release: ${{ inputs.java-version }} | ||
release: ${{ inputs.java-release }} | ||
version: ${{ inputs.java-version }} | ||
|
||
- uses: Apple-Actions/import-codesign-certs@v1 | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,12 +9,16 @@ on: | |
project-version: | ||
required: true | ||
type: string | ||
java-version: | ||
java-release: | ||
default: '23' | ||
required: false | ||
type: string | ||
java-version: | ||
default: '23.0.1' | ||
required: false | ||
type: string | ||
javafx-version: | ||
default: '23' | ||
default: '23.0.1' | ||
required: false | ||
type: string | ||
test: | ||
|
@@ -39,7 +43,8 @@ jobs: | |
uses: oracle-actions/[email protected] | ||
with: | ||
website: jdk.java.net | ||
release: ${{ inputs.java-version }} | ||
release: ${{ inputs.java-release }} | ||
version: ${{ inputs.java-version }} | ||
|
||
- name: Setup JavaFX | ||
id: javafx | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,18 +3,21 @@ name: Early Access | |
on: | ||
push: | ||
branches: [ master ] | ||
workflow_dispatch: | ||
|
||
env: | ||
JAVAFX_VERSION: '23' | ||
JAVA_VERSION: '23' | ||
JAVA_RELEASE: '23' | ||
JAVA_VERSION: '23.0.1' | ||
JAVAFX_VERSION: '23.0.1' | ||
|
||
jobs: | ||
precheck: | ||
runs-on: ubuntu-20.04 | ||
if: startsWith(github.event.head_commit.message, 'Releasing version') != true | ||
outputs: | ||
JAVAFX_VERSION: ${{ env.JAVAFX_VERSION }} | ||
JAVA_RELEASE: ${{ env.JAVA_RELEASE }} | ||
JAVA_VERSION: ${{ env.JAVA_VERSION }} | ||
JAVAFX_VERSION: ${{ env.JAVAFX_VERSION }} | ||
APP_VERSION: ${{ steps.vars.outputs.APP_VERSION }} | ||
PROJECT_VERSION: ${{ steps.vars.outputs.PROJECT_VERSION }} | ||
steps: | ||
|
@@ -25,7 +28,8 @@ jobs: | |
uses: oracle-actions/[email protected] | ||
with: | ||
website: jdk.java.net | ||
release: ${{ env.JAVA_VERSION }} | ||
release: ${{ env.JAVA_RELEASE }} | ||
version: ${{ env.JAVA_VERSION }} | ||
|
||
- name: Cache Maven packages | ||
uses: actions/cache@v4 | ||
|
@@ -129,7 +133,8 @@ jobs: | |
uses: oracle-actions/[email protected] | ||
with: | ||
website: jdk.java.net | ||
release: ${{ needs.precheck.outputs.JAVA_VERSION }} | ||
release: ${{ needs.precheck.outputs.JAVA_RELEASE }} | ||
version: ${{ needs.precheck.outputs.JAVA_VERSION }} | ||
|
||
- name: Cache Maven packages | ||
uses: actions/cache@v4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,15 +11,17 @@ on: | |
- GA | ||
|
||
env: | ||
JAVAFX_VERSION: '23' | ||
JAVA_VERSION: '23' | ||
JAVA_RELEASE: '23' | ||
JAVA_VERSION: '23.0.1' | ||
JAVAFX_VERSION: '23.0.1' | ||
|
||
jobs: | ||
precheck: | ||
runs-on: ubuntu-20.04 | ||
outputs: | ||
JAVAFX_VERSION: ${{ env.JAVAFX_VERSION }} | ||
JAVA_RELEASE: ${{ env.JAVA_RELEASE }} | ||
JAVA_VERSION: ${{ env.JAVA_VERSION }} | ||
JAVAFX_VERSION: ${{ env.JAVAFX_VERSION }} | ||
APP_VERSION: ${{ steps.vars.outputs.APP_VERSION }} | ||
PROJECT_VERSION: ${{ steps.vars.outputs.PROJECT_VERSION }} | ||
S3_PATH: ${{ steps.vars.outputs.S3_PATH }} | ||
|
@@ -31,7 +33,8 @@ jobs: | |
uses: oracle-actions/[email protected] | ||
with: | ||
website: jdk.java.net | ||
release: ${{ env.JAVA_VERSION }} | ||
release: ${{ env.JAVA_RELEASE }} | ||
version: ${{ env.JAVA_VERSION }} | ||
|
||
- name: Cache Maven packages | ||
uses: actions/cache@v4 | ||
|
@@ -136,7 +139,8 @@ jobs: | |
uses: oracle-actions/[email protected] | ||
with: | ||
website: jdk.java.net | ||
release: ${{ needs.precheck.outputs.JAVA_VERSION }} | ||
release: ${{ needs.precheck.outputs.JAVA_RELEASE }} | ||
version: ${{ needs.precheck.outputs.JAVA_VERSION }} | ||
|
||
- name: Cache Maven packages | ||
uses: actions/cache@v4 | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters