forked from supermerill/SuperSlicer
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
schdro
committed
Jun 12, 2024
1 parent
1cdcfe8
commit 45d83c2
Showing
1 changed file
with
52 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: C/C++ Release candidate ubuntu24-GTK3 | ||
|
||
on: | ||
push: | ||
branches: | ||
- rc | ||
workflow_dispatch: | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-24.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.28.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 python3-numpy libfuse2 | ||
- 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 |