-
Notifications
You must be signed in to change notification settings - Fork 320
70 lines (64 loc) · 2.07 KB
/
build.yaml
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
on: pull_request
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Install linux packages
run: sudo apt-get update && sudo apt-get install wine devscripts sbuild rpm
- name: Download node.js
run: curl -o /tmp/node.tar.xz https://nodejs.org/dist/v20.10.0/node-v20.10.0-linux-x64.tar.xz && sudo tar --strip-components=1 -xJvf /tmp/node.tar.xz -C /usr/local
- name: Install deps
run: npm install
- name: Create apps folder
run: mkdir -p apps
- name: List files
run: ls -lR .
- name: build linux64 release
run: node ./node_modules/gulp/bin/gulp.js release --platform=linux64 -LLLL --installer
- name: List files 2
run: ls -lR .
- name: Upload deb
uses: actions/upload-artifact@v3
with:
name: Configurator deb
path: apps/*.deb
- name: Upload rpm
uses: actions/upload-artifact@v3
with:
name: Configurator rpm
path: apps/*.rpm
- name: Upload linux binary
uses: actions/upload-artifact@v3
with:
name: Configurator tar.gz
path: apps/*.tar.gz
build-mac:
runs-on: macos-latest
steps:
- uses: actions/checkout@v3
- name: Install packages
run: brew install nodejs
- name: Download node.js
run: curl -o /tmp/node.pkg https://nodejs.org/dist/v20.10.0/node-v20.10.0.pkg && sudo installer -pkg /tmp/node.pkg -target /
- name: Install deps
run: npm install
- name: Create apps folder
run: mkdir -p apps
- name: List files
run: ls -lR .
- name: build macos release
run: node ./node_modules/gulp/bin/gulp.js release --platform=osx64 -LLLL
- name: List files 2
run: ls -lR .
- name: Upload artifacts
uses: actions/upload-artifact@v3
with:
name: MacOSX Binary
path: apps/*.zip
# build-win:
# runs-on: windows-latest
# steps:
# - uses: actions/checkout@v3
# - name: Install windows packages
# run: brew install nodejs