Add the tool name in left of the filament combobox (10 letters max) #10
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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/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 gtk3 glew | |
run: sudo apt install libgtk-3-dev libglew-dev libudev-dev libdbus-1-dev gettext | |
- name: build deps & slicer, tar & appimage | |
run: ./BuildLinux.sh -dsi | |
- name: Upload artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: rc_linux_gtk3.tar | |
path: build/${{ github.event.repository.name }}.tar | |
- name: Upload appimage | |
uses: actions/upload-artifact@v4 | |
with: | |
name: rc-${{ github.event.repository.name }}-gtk3.AppImage | |
path: build/${{ github.event.repository.name }}_ubu64.AppImage |