blob: 7aa7452d78f504eb87d2858081bff1f2d22104d9 (
plain)
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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
|
name: Build
on:
push:
branches-ignore:
- master
- main
tags:
- "v*"
jobs:
linux:
runs-on: ubuntu-16.04
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions/setup-python@v2
with:
python-version: '3.9.x'
- uses: actions/setup-node@v1
with:
node-version: '15.x'
- uses: actions/cache@v2
id: pip-cache
with:
path: ~/.cache/pip
key: ${{ runner.os }}-16.04-pip-${{ hashFiles('**/requirements.txt') }}
restore-keys: |
${{ runner.os }}-16.04-pip-
- name: Get yarn cache directory path
id: yarn-cache-dir-path
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v2
id: yarn-cache # use this to check for `cache-hit` (`steps.yarn-cache.outputs.cache-hit != 'true'`)
with:
path: ${{ steps.yarn-cache-dir-path.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: install dependencies
shell: bash
run: |
sudo apt-get update
python -m pip install --upgrade pip
python -m pip install wheel
sudo apt-get install gettext
# for wxPython
sudo apt install glib-networking libsdl1.2-dev
# for PyGObject
sudo apt install libgirepository1.0-dev libcairo2-dev
# for shapely
sudo apt install libgeos-dev build-essential libgtk-3-dev
uname -a
python --version
python -m pip --version
python -m pip debug
python -m pip install pycairo==1.11.1
python -m pip install PyGObject==3.30.5
# colormath - last official release: 3.0.0
# we need already submitted fixes - so let's grab them from the github repository
python -m pip install git+https://github.com/gtaylor/python-colormath
python -m pip install -r requirements.txt
python -m pip install pyinstaller
echo "${{ env.pythonLocation }}\bin" >> $GITHUB_PATH
- shell: bash
run: |
make dist
env:
BUILD: linux
- uses: actions/upload-artifact@v2
with:
name: inkstitch-linux
path: artifacts
windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions/setup-node@v1
with:
node-version: '15.x'
- uses: actions/setup-python@v2
with:
python-version: '3.8.x'
architecture: 'x86'
- uses: microsoft/setup-msbuild@v1.0.2
- name: install dependencies
shell: bash
run: |
python -m pip install --upgrade pip
python -m pip install wheel
python -m pip install git+https://github.com/gtaylor/python-colormath
python -m pip install -r requirements.txt
python -m pip install pyinstaller
echo "${{ env.pythonLocation }}\bin" >> $GITHUB_PATH
- shell: bash
run: |
make dist
env:
BUILD: windows
- uses: actions/upload-artifact@v2
with:
name: inkstitch-windows
path: artifacts
mac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- uses: actions/setup-python@v2
with:
python-version: '3.9.x'
- uses: actions/setup-node@v1
with:
node-version: '15.x'
- name: install dependencies
shell: bash
run: |
brew update
brew install gtk+3 pkg-config gobject-introspection geos libffi gettext || true
export LDFLAGS="-L/usr/local/opt/libffi/lib"
export PKG_CONFIG_PATH="/usr/local/opt/libffi/lib/pkgconfig"
# for msgfmt
echo "/usr/local/opt/gettext/bin" >> $GITHUB_PATH
echo "GI_TYPELIB_PATH=/usr/local/lib/girepository-1.0/" >> $GITHUB_ENV
pip install --upgrade pip
pip --version
pip install wheel
pip install PyGObject
pip install git+https://github.com/gtaylor/python-colormath
pip install -r requirements.txt
pip install pyinstaller==4.3
echo "${{ env.pythonLocation }}/bin" >> $GITHUB_PATH
- shell: bash
run: |
make dist
env:
BUILD: osx
- uses: actions/upload-artifact@v2
with:
name: inkstitch-mac
path: artifacts
release:
runs-on: ubuntu-latest
needs: [linux, windows, mac]
if: always()
steps:
- name: determine release info
shell: bash
run: |
if [[ "${GITHUB_REF}" =~ ^refs/tags/v[0-9.]+$ ]]; then
tag="${GITHUB_REF#refs/tags/}"
echo "release_tag=${tag}" >> $GITHUB_ENV
echo "prerelease=false" >> $GITHUB_ENV
echo "title=${tag}" >> $GITHUB_ENV
else
branch="${GITHUB_REF#refs/heads/}"
tag="dev-build-$(echo $branch | tr / -)"
echo "release_tag=${tag}" >> $GITHUB_ENV
echo "prerelease=true" >> $GITHUB_ENV
echo "title=development build of $branch" >> $GITHUB_ENV
fi
- name: download linux
uses: actions/download-artifact@v2
with:
name: 'inkstitch-linux'
path: 'artifacts/'
- name: download windows
uses: actions/download-artifact@v2
with:
name: 'inkstitch-windows'
path: 'artifacts/'
if: always()
- name: download mac
uses: actions/download-artifact@v2
with:
name: 'inkstitch-mac'
path: 'artifacts/'
if: always()
- name: create/update release
uses: "marvinpinto/action-automatic-releases@latest"
if: always()
with:
repo_token: "${{secrets.GITHUB_TOKEN}}"
automatic_release_tag: "${{env.release_tag}}"
prerelease: "${{env.prerelease}}"
title: "${{env.title}}"
files: |
artifacts/*.zip
|