From fe89d36761421b12476fc2e33972380bb3673369 Mon Sep 17 00:00:00 2001 From: James Elliott Date: Sun, 8 Sep 2024 13:13:51 -0500 Subject: [PATCH] Try temporarily disabling macOS builds for now --- .github/resources/preview_notes.md | 6 ++++++ .github/workflows/uberjar.yml | 6 ++++-- 2 files changed, 10 insertions(+), 2 deletions(-) diff --git a/.github/resources/preview_notes.md b/.github/resources/preview_notes.md index 5318a03b..3d6c96ab 100644 --- a/.github/resources/preview_notes.md +++ b/.github/resources/preview_notes.md @@ -1,3 +1,9 @@ :construction: This is pre-release code for people who want to help test [what is going into the next release](https://github.com/Deep-Symmetry/beat-link-trigger/blob/main/CHANGELOG.md). > Don’t download this if you aren’t comfortable testing code while it is under active development! Instead, look at the [latest release](https:///github.com/Deep-Symmetry/beat-link-trigger/releases/latest). + +## What to Download + +- If you already have a compatible Java runtime installed (Java 11 or later), you can just download the executable cross-platform Jar file, and should be able to run it by double-clicking. +- If you are on a Mac, unfortunately something has broken down between OpenJDK and Apple which prevents code-signed, notarized disk images from being built successfully, so unless and until that can be resolved, you will need to use the cross-platform jar file as described above. You can install the Java distribution used by Deep Symmetry from [here](https://docs.aws.amazon.com/corretto/latest/corretto-17-ug/downloads-list.html). Be sure to choose the correct version for your processor, either [macOS aarch64 (for Apple Silicon)](https://corretto.aws/downloads/latest/amazon-corretto-17-aarch64-macos-jdk.pkg) or [macOS x64 (for Intel)](https://corretto.aws/downloads/latest/amazon-corretto-17-x64-macos-jdk.pkg). +- If you are on 64-bit Windows and don’t want to have to separately install Java you can download the Win64 MSI installer (`.msi` file), which installs a Windows application with the Java runtime built in. diff --git a/.github/workflows/uberjar.yml b/.github/workflows/uberjar.yml index 4c8e66a2..769be632 100644 --- a/.github/workflows/uberjar.yml +++ b/.github/workflows/uberjar.yml @@ -139,6 +139,7 @@ jobs: build_dmg: name: Build macOS Apple Silicon Disk Image runs-on: macos-latest + if: false # Disable until notarization of jpackage DMGs can work again needs: build_uberjar @@ -172,7 +173,7 @@ jobs: - uses: actions/setup-java@v4 with: - java-version: '22' + java-version: '17' distribution: 'corretto' - name: Build macOS disk image @@ -185,6 +186,7 @@ jobs: build_intel_dmg: name: Build macOS Intel Disk Image runs-on: macos-13 + if: false # Disable until notarization of jpackage DMGs can work again needs: build_uberjar @@ -219,7 +221,7 @@ jobs: - uses: actions/setup-java@v4 with: - java-version: '22' + java-version: '17' distribution: 'corretto' - name: Build macOS disk image