forked from supermerill/SuperSlicer
-
Notifications
You must be signed in to change notification settings - Fork 1
40 lines (36 loc) · 1.11 KB
/
ccpp_ubuntu_debug.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
name: C/C++ debug ubuntu
on:
push:
branches:
- debug_ubuntu
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
ref: 'debug_ubuntu'
- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v1.13
with:
cmake-version: '3.16.x'
- 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 gtk2 glew
run: sudo apt install libgtk2.0-dev libglew-dev libudev-dev libdbus-1-dev libssl-dev libcurl4-openssl-dev gettext
- name: build deps & slicer, tar & appimage
run: ./BuildLinux.sh -bdgsi
- name: Upload artifact
uses: actions/upload-artifact@v3.0.0
with:
name: nightly_linux_gtk2.tar
path: build/${{ github.event.repository.name }}.tar
- name: Upload appimage
uses: actions/upload-artifact@v3
with:
name: ${{ github.event.repository.name }}-gtk2.AppImage
path: build/${{ github.event.repository.name }}_ubu64.AppImage