-
-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
184 additions
and
81 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,62 @@ | ||
name: Pull Requests | ||
on: | ||
pull_request: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
build: | ||
name: Create Pull Request Build for ${{ matrix.os_prefix }} (${{ matrix.arch }}) | ||
runs-on: ${{ matrix.os }} | ||
permissions: | ||
pull-requests: write | ||
contents: read | ||
strategy: | ||
matrix: | ||
include: | ||
# compiling for arm32 needs a self-hosted runner on Raspi OS (32-bit) | ||
- os: self-hosted | ||
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: 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@v3 | ||
id: upload | ||
with: | ||
name: processing-${{github.sha}}${{ matrix.os_prefix }}-${{ matrix.arch }} | ||
path: ./build/${{ matrix.os_prefix }}/processing-${{github.sha}}-${{ matrix.os_prefix}}-* | ||
retention-days: 5 | ||
# TODO: Merge into one comment and fix the link | ||
# - uses: mshick/add-pr-comment@v2 | ||
# with: | ||
# message-id: "build-artifact ${{ matrix.os_prefix }} ${{ matrix.arch }}" | ||
# message: | | ||
# Build artifacts for ${{ matrix.os_prefix }} (${{ matrix.arch }}) have been created. | ||
# Download the artifacts [here](${{ steps.upload.outputs.artifact-id }}). |
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,81 @@ | ||
name: Releases | ||
on: | ||
push: | ||
tags: | ||
- processing-* | ||
|
||
jobs: | ||
version: | ||
runs-on: ubuntu-latest | ||
outputs: | ||
build_number: ${{ steps.tag_info.outputs.build_number }} | ||
version: ${{ steps.tag_info.outputs.version }} | ||
steps: | ||
- name: Extract version and build number | ||
id: tag_info | ||
shell: bash | ||
run: | | ||
TAG_NAME="${GITHUB_REF#refs/tags/}" | ||
BUILD_NUMBER=$(echo "$TAG_NAME" | cut -d'-' -f2) | ||
VERSION=$(echo "$TAG_NAME" | cut -d'-' -f3) | ||
# Set outputs for use in later jobs or steps | ||
echo "build_number=$BUILD_NUMBER" >> $GITHUB_OUTPUT | ||
echo "version=$VERSION" >> $GITHUB_OUTPUT | ||
build: | ||
name: Publish Release for ${{ matrix.os_prefix }} (${{ matrix.arch }}) | ||
runs-on: ${{ matrix.os }} | ||
needs: version | ||
permissions: | ||
contents: write | ||
strategy: | ||
matrix: | ||
include: | ||
# compiling for arm32 needs a self-hosted runner on Raspi OS (32-bit) | ||
- os: self-hosted | ||
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: 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: Install Certificates for Code Signing | ||
if: ${{ matrix.os_prefix == 'macos' }} | ||
uses: apple-actions/import-codesign-certs@v3 | ||
with: | ||
p12-file-base64: ${{ secrets.CERTIFICATES_P12 }} | ||
p12-password: ${{ secrets.CERTIFICATES_P12_PASSWORD }} | ||
- name: Build Release | ||
run: ant -noinput -buildfile build/build.xml ${{ matrix.os_prefix }}-dist -Dversion="${{ needs.version.outputs.version }}" | ||
env: | ||
PROCESSING_APP_PASSWORD: ${{ secrets.PROCESSING_APP_PASSWORD }} | ||
PROCESSING_APPLE_ID: ${{ secrets.PROCESSING_APPLE_ID }} | ||
PROCESSING_TEAM_ID: ${{ secrets.PROCESSING_TEAM_ID }} | ||
- name: Upload binaries to release | ||
uses: svenstaro/upload-release-action@v2 | ||
with: | ||
repo_token: ${{ secrets.GITHUB_TOKEN }} | ||
file: ./build/${{ matrix.os_prefix }}/processing-${{ needs.version.outputs.version }}-${{ matrix.os_prefix}}-* | ||
file_glob: true |