Merge pull request #1018 from processing/macos-fix-hdr-colors #139
This file contains hidden or 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
name: Branch Builds (Legacy) | |
on: | |
push: | |
paths-ignore: | |
- '**/*.md' | |
- '.all-contributorsrc' | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
name: Run Tests | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Install Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
architecture: x64 | |
- name: Build | |
run: > | |
cd build; | |
ant -noinput build test; | |
build: | |
name: Create Pre-release for ${{ matrix.os_prefix }} (${{ matrix.arch }}) | |
needs: test | |
runs-on: ${{ matrix.os }} | |
permissions: | |
contents: write | |
strategy: | |
fail-fast: false | |
matrix: | |
include: | |
# compiling for arm32 needs a self-hosted runner on Raspi OS (32-bit) | |
- os: [self-hosted, linux, ARM] | |
os_prefix: linux | |
arch: arm | |
- os: ubuntu-latest | |
os_prefix: linux | |
arch: x64 | |
- os: windows-latest | |
os_prefix: windows | |
arch: x64 | |
- os: macos-latest | |
os_prefix: macos | |
arch: x64 | |
- os: macos-latest | |
os_prefix: macos | |
arch: aarch64 | |
- os: macos-latest | |
os_prefix: linux | |
arch: aarch64 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
- name: Checkout Examples Repository | |
uses: actions/checkout@v4 | |
with: | |
repository: processing/processing-examples | |
path: processing-examples | |
- name: Install Java | |
uses: actions/setup-java@v4 | |
with: | |
java-version: '17' | |
distribution: 'temurin' | |
architecture: ${{ matrix.arch }} | |
- name: Setup Ant | |
uses: cedx/setup-ant@v3 | |
- name: Build Release | |
run: ant -noinput -buildfile build/build.xml ${{ matrix.os_prefix }}-dist -Dversion="${{ github.sha }}" | |
- name: Add artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: processing-${{ github.ref_name }}-${{github.sha}}-${{ matrix.os_prefix }}-${{ matrix.arch }}-ant | |
path: ./build/${{ matrix.os_prefix }}/processing-${{github.sha}}-${{ matrix.os_prefix}}-* | |
retention-days: 1 |