-
Notifications
You must be signed in to change notification settings - Fork 11
109 lines (85 loc) · 2.21 KB
/
makefile.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
name: Makefile CI
on:
push:
branches: [ master ]
tags: [ '*' ]
pull_request:
branches: [ master ]
jobs:
ubuntu-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: install dependencies
run: sudo apt install puredata-dev
- name: make
run: make
- name: make install
run: make install objectsdir=./build
- name: upload
uses: actions/upload-artifact@v3
with:
name: pdlua-ubuntu
path: build
macos-build:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: install dependencies
run: |
wget https://github.com/pure-data/pure-data/archive/refs/tags/0.53-1.zip
unzip 0.53-1.zip
- name: make
run: make PDDIR=./pure-data-0.53-1 arch="arm64 x86_64"
- name: make install
run: make install objectsdir=./build
- name: upload
uses: actions/upload-artifact@v3
with:
name: pdlua-macos
path: build
windows-build:
runs-on: windows-2022
env:
CC: gcc
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
fetch-depth: 0
- name: install dependencies
run: |
C:\msys64\usr\bin\wget.exe http://msp.ucsd.edu/Software/pd-0.53-1.msw.zip
unzip pd-0.53-1.msw.zip
- name: make
run: make PDDIR=./pd-0.53-1
- name: make install
run: make install objectsdir=./build
- name: upload
uses: actions/upload-artifact@v3
with:
name: pdlua-windows
path: build
# Big thanks to @tomara-x and @timothyschoen for showing me how to do this! -ag
release:
if: startsWith(github.ref, 'refs/tags/')
runs-on: ubuntu-latest
needs: [ubuntu-build, macos-build, windows-build]
steps:
- uses: actions/download-artifact@v3
- name: ziptie
run: |
mkdir dist
for x in pdlua-*; do (cd $x && zip -r ../dist/$x.zip pdlua/); done
- name: release
uses: softprops/action-gh-release@v1
with:
prerelease: true
draft: true
files: dist/*.zip