-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add gitignore try to fix issue with sonoma try with jdk 21 update pomxml fix pom.xml try to fix jdk fix jdk test test try with two mac architecture specify name fix name try with javafx 21.04 remove unuseful version of javafs update github actions before deprecation of nodejs test
- Loading branch information
Showing
30 changed files
with
118 additions
and
86 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
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
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 |
---|---|---|
@@ -0,0 +1,56 @@ | ||
# This workflow will build a Java project with Maven | ||
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-maven | ||
|
||
name: Build macOS aarch64 Installer | ||
|
||
on: | ||
workflow_dispatch: | ||
branches: [ master ] | ||
push: | ||
branches: [ master ] | ||
paths: | ||
- RCaNconstructor/** | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: macos-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up JDK 21 | ||
uses: actions/setup-java@v4 | ||
with: | ||
java-version: 21.0.3 | ||
distribution: 'liberica' | ||
java-package: jdk+fx | ||
cache: 'maven' | ||
|
||
- name: Import signing certificate into keychain | ||
run: | | ||
KEYCHAIN_FILE=default.keychain | ||
KEYCHAIN_PASSWORD=myvoiceismypassport | ||
security create-keychain -p $KEYCHAIN_PASSWORD $KEYCHAIN_FILE | ||
security default-keychain -s $KEYCHAIN_FILE | ||
security unlock-keychain -p $KEYCHAIN_PASSWORD $KEYCHAIN_FILE | ||
security import <(echo $SIGNING_CERTIFICATE_P12_DATA | base64 --decode) \ | ||
-f pkcs12 \ | ||
-k $KEYCHAIN_FILE \ | ||
-P $SIGNING_CERTIFICATE_PASSWORD \ | ||
-T /usr/bin/codesign | ||
security set-key-partition-list -S apple-tool:,apple: -s -k $KEYCHAIN_PASSWORD $KEYCHAIN_FILE | ||
env: | ||
SIGNING_CERTIFICATE_P12_DATA: ${{ secrets.SIGNING_CERTIFICATE_P12_DATA }} | ||
SIGNING_CERTIFICATE_PASSWORD: ${{ secrets.SIGNING_CERTIFICATE_PASSWORD }} | ||
|
||
|
||
- name: Build with Maven | ||
run: mvn -B clean install --file RCaNconstructor/pom.xml | ||
- name: Update Automatic Release | ||
uses: marvinpinto/action-automatic-releases@latest | ||
with: | ||
repo_token: "${{ secrets.GITHUB_TOKEN}}" | ||
automatic_release_tag: "macOSaarch64-latest" | ||
prerelease: true | ||
title: "macOS aarch64 Development Build" | ||
files: ./RCaNconstructor/target/*.dmg |
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
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
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
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 |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.Rproj.user | ||
.Rhistory | ||
.RData | ||
.Ruserdata | ||
*.DS_Store | ||
RCaNconstructor/target |
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
This file was deleted.
Oops, something went wrong.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.