Some checks failed
My Build All / build_windows (push) Has been cancelled
My Build All / build_linux_portable (push) Has been cancelled
My Build All / build_linux_appimage (push) Has been cancelled
My Build All / build_macos (push) Has been cancelled
My Build All / Publish release assets (push) Has been cancelled
Shellcheck / Shellcheck (push) Has been cancelled
15 lines
No EOL
704 B
Bash
Executable file
15 lines
No EOL
704 B
Bash
Executable file
#! /bin/bash
|
|
|
|
sudo apt update
|
|
sudo apt install build-essential flatpak flatpak-builder gnome-software-plugin-flatpak -y
|
|
flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
|
|
flatpak install flathub org.gnome.Platform//48 org.gnome.Sdk//48
|
|
|
|
|
|
##
|
|
# in OrcaSlicer folder, run following command to build Orca
|
|
# # First time build
|
|
# flatpak-builder --state-dir=.flatpak-builder --keep-build-dirs --user --force-clean build-dir scripts/flatpak/com.orcaslicer.OrcaSlicer.yml
|
|
|
|
# # Subsequent builds (only rebuilding OrcaSlicer)
|
|
# flatpak-builder --state-dir=.flatpak-builder --keep-build-dirs --user build-dir scripts/flatpak/com.orcaslicer.OrcaSlicer.yml --build-only=OrcaSlicer |