forked from prusa3d/PrusaSlicer
-
-
Notifications
You must be signed in to change notification settings - Fork 522
51 lines (47 loc) · 1.43 KB
/
ccpp_ubuntu_gtk3_rc.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
name: C/C++ Release candidate ubuntu-GTK3
on:
push:
branches:
- rc
jobs:
build:
runs-on: ubuntu-20.04
env:
EXEC_NAME: "${{ github.event.repository.name }}"
steps:
- uses: actions/checkout@v2
with:
ref: 'rc'
- name: Setup cmake
uses: jwlawson/[email protected]
with:
cmake-version: '3.16.x'
- name: update submodule profiles
working-directory: ./resources/profiles
run: git submodule update --init
- name: change date in version
run: sed -i "s/+UNKNOWN/_$(date '+%F')/" version.inc
- name: update clock
run: sudo hwclock -s
- name: update apt
run: sudo apt update
- name: install gtk3 glew
run: sudo apt install libgtk-3-dev libglew-dev libudev-dev libdbus-1-dev gettext
- name: build deps & slicer
run: ./BuildLinux.sh -ds
- name: make .pot
working-directory: ./build
run: make gettext_make_pot
- name: build tar & appimage
working-directory: ./build
run: src/BuildLinuxImage.sh -i
- name: Upload artifact
uses: actions/[email protected]
with:
name: rc_linux_gtk3.tar
path: build/${{ github.event.repository.name }}.tar
- name: Upload appimage
uses: actions/[email protected]
with:
name: rc-${{ github.event.repository.name }}-gtk3.AppImage
path: build/${{ github.event.repository.name }}_ubu64.AppImage