fix gcode view (wipe issue) #676
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++ Nightly ubuntu | |
on: | |
push: | |
branches: | |
- Nigthly | |
- nightly_dev | |
- nightly_master | |
- debug_ubuntu | |
jobs: | |
build: | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
- 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 gtk2 glew | |
run: sudo apt install libgtk2.0-dev libglew-dev libudev-dev libdbus-1-dev gettext | |
- name: build deps & slicer | |
run: ./BuildLinux.sh -dgs | |
- 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: nightly_linux_gtk2.tar | |
path: build/${{ github.event.repository.name }}.tar | |
- name: Upload appimage | |
uses: actions/[email protected] | |
with: | |
name: ${{ github.event.repository.name }}-gtk2.AppImage | |
path: build/${{ github.event.repository.name }}_ubu64.AppImage |