1
- name : Pre-releases with Gradle
1
+ name : Branch Builds
2
2
on :
3
3
push :
4
4
paths-ignore :
5
5
- ' **/*.md'
6
6
- ' .all-contributorsrc'
7
7
8
8
jobs :
9
+ test :
10
+ runs-on : ubuntu-latest
11
+ name : Test Processing
12
+ steps :
13
+ - name : Checkout Repository
14
+ uses : actions/checkout@v4
15
+ - name : Install Java
16
+ uses : actions/setup-java@v4
17
+ with :
18
+ java-version : ' 17'
19
+ distribution : ' temurin'
20
+ - name : Setup Gradle
21
+ uses : gradle/actions/setup-gradle@v4
22
+
23
+ - name : Build with Gradle
24
+ run : ./gradlew test
9
25
build :
10
- name : Create Pre-release for ${{ matrix.os_prefix }} ( ${{ matrix.arch }})
26
+ name : ( ${{ matrix.os_prefix }}/ ${{ matrix.arch }}) Create Processing Build
11
27
runs-on : ${{ matrix.os }}
12
- permissions :
13
- contents : write
28
+ needs : test
14
29
strategy :
15
30
fail-fast : false
16
31
matrix :
17
32
include :
18
- - os : [self-hosted, linux, ARM64]
33
+ - os : ubuntu-24.04-arm
19
34
os_prefix : linux
20
35
arch : aarch64
36
+ binary : processing*.snap
21
37
- os : ubuntu-latest
22
38
os_prefix : linux
23
39
arch : x64
40
+ binary : processing*.snap
24
41
- os : windows-latest
25
42
os_prefix : windows
26
43
arch : x64
44
+ binary : msi/Processing-*.msi
27
45
- os : macos-latest
28
46
os_prefix : macos
29
47
arch : x64
48
+ binary : dmg/Processing-*.dmg
30
49
- os : macos-latest
31
50
os_prefix : macos
32
51
arch : aarch64
52
+ binary : dmg/Processing-*.dmg
33
53
steps :
54
+ - name : Install Snapcraft
55
+ if : runner.os == 'Linux'
56
+ uses : samuelmeuli/action-snapcraft@v3
57
+ - name : Install LXD
58
+ if : runner.os == 'Linux'
59
+ uses : canonical/setup-lxd@main
60
+
34
61
- name : Checkout Repository
35
62
uses : actions/checkout@v4
36
63
- name : Install Java
@@ -41,19 +68,13 @@ jobs:
41
68
architecture : ${{ matrix.arch }}
42
69
- name : Setup Gradle
43
70
uses : gradle/actions/setup-gradle@v4
71
+
44
72
- name : Build with Gradle
45
73
run : ./gradlew packageDistributionForCurrentOS
46
- - name : Add instructions
47
- if : ${{ matrix.os_prefix == 'macos' }}
48
- run : |
49
- echo "run 'xattr -d com.apple.quarantine Processing-${version}.dmg' to remove the quarantine flag" > ./app/build/compose/binaries/main/dmg/INSTRUCTIONS_FOR_TESTING.txt
74
+
50
75
- name : Add artifact
51
76
uses : actions/upload-artifact@v4
52
77
with :
53
- name : processing-${{ github.ref_name }}-${{github.sha}}-${{ matrix.os_prefix }}-${{ matrix.arch }}-gradle
54
- path : |
55
- ./app/build/compose/binaries/main/dmg/Processing-*.dmg
56
- ./app/build/compose/binaries/main/dmg/INSTRUCTIONS_FOR_TESTING.txt
57
- ./app/build/compose/binaries/main/msi/Processing-*.msi
58
- ./app/build/compose/binaries/main/deb/processing*.deb
78
+ name : processing-${{ matrix.os_prefix }}-${{ matrix.arch }}-br_${{ github.ref_name }}
59
79
retention-days : 1
80
+ path : app/build/compose/binaries/main/${{ matrix.binary }}
0 commit comments