131 lines
4.5 KiB
YAML
131 lines
4.5 KiB
YAML
on:
|
|
workflow_call:
|
|
inputs:
|
|
cache-key:
|
|
required: true
|
|
type: string
|
|
cache-path:
|
|
required: true
|
|
type: string
|
|
valid-cache:
|
|
required: true
|
|
type: boolean
|
|
os:
|
|
required: true
|
|
type: string
|
|
arch:
|
|
required: false
|
|
type: string
|
|
build-deps-only:
|
|
required: false
|
|
type: boolean
|
|
|
|
jobs:
|
|
build_deps:
|
|
name: Build Deps
|
|
if: inputs.build-deps-only || inputs.valid-cache != true
|
|
runs-on: ${{ inputs.os }}
|
|
env:
|
|
date:
|
|
steps:
|
|
|
|
# Setup the environment
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
|
|
- name: load cached deps
|
|
uses: actions/cache@v3
|
|
with:
|
|
path: ${{ inputs.cache-path }}
|
|
key: ${{ inputs.cache-key }}
|
|
|
|
- name: setup dev on Windows
|
|
if: inputs.os == 'windows-latest'
|
|
uses: microsoft/setup-msbuild@v1.1
|
|
|
|
- name: Get the date on Ubuntu and macOS
|
|
if: inputs.os != 'windows-latest'
|
|
run: echo "date=$(date +'%Y%m%d')" >> $GITHUB_ENV
|
|
shell: bash
|
|
|
|
- name: Get the date on Windows
|
|
if: inputs.os == 'windows-latest'
|
|
run: echo "date=$(Get-Date -Format 'yyyyMMdd')" | Out-File -Append -FilePath $env:GITHUB_ENV -Encoding utf8
|
|
shell: pwsh
|
|
|
|
|
|
# Build Dependencies
|
|
- name: Build on Windows
|
|
if: inputs.os == 'windows-latest'
|
|
working-directory: ${{ github.workspace }}
|
|
run: |
|
|
choco install strawberryperl
|
|
mkdir ${{ github.workspace }}/deps/build
|
|
mkdir ${{ github.workspace }}/deps/build/OrcaSlicer_dep
|
|
.\build_release_vs2022.bat deps
|
|
.\build_release_vs2022.bat pack
|
|
cd ${{ github.workspace }}/deps/build
|
|
|
|
- name: Build on Mac ${{ inputs.arch }}
|
|
if: inputs.os == 'macos-12'
|
|
working-directory: ${{ github.workspace }}
|
|
run: |
|
|
brew install cmake git gettext automake
|
|
brew list
|
|
mkdir -p ${{ github.workspace }}/deps/build_${{ inputs.arch }}
|
|
mkdir -p ${{ github.workspace }}/deps/build_${{ inputs.arch }}/OrcaSlicer_dep_${{ inputs.arch }}
|
|
./build_release_macos.sh -dp -a ${{ inputs.arch }}
|
|
|
|
- name: Build on Ubuntu
|
|
if: inputs.os == 'ubuntu-20.04'
|
|
working-directory: ${{ github.workspace }}
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install -y cmake git g++ build-essential libgl1-mesa-dev m4 \
|
|
libwayland-dev libxkbcommon-dev wayland-protocols extra-cmake-modules pkgconf \
|
|
libglu1-mesa-dev libcairo2-dev libgtk-3-dev libsoup2.4-dev libwebkit2gtk-4.0-dev \
|
|
libgstreamer1.0-dev libgstreamer-plugins-good1.0-dev libgstreamer-plugins-base1.0-dev \
|
|
gstreamer1.0-plugins-bad libosmesa6-dev wget sudo autoconf curl libunwind-dev
|
|
mkdir -p ${{ github.workspace }}/deps/build
|
|
mkdir -p ${{ github.workspace }}/deps/build/destdir
|
|
sudo ./BuildLinux.sh -ur
|
|
sudo chown $USER -R ./
|
|
./BuildLinux.sh -dr
|
|
cd deps/build
|
|
tar -czvf OrcaSlicer_dep_ubuntu_$(date +"%Y%m%d").tar.gz destdir
|
|
|
|
|
|
# Upload Artifacts
|
|
- name: Upload Mac ${{ inputs.arch }} artifacts
|
|
if: inputs.os == 'macos-12'
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: OrcaSlicer_dep_mac_${{ inputs.arch }}_${{ env.date }}
|
|
path: ${{ github.workspace }}/deps/build_${{ inputs.arch }}/OrcaSlicer_dep*.tar.gz
|
|
|
|
- name: Upload Windows artifacts
|
|
if: inputs.os == 'windows-latest'
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: OrcaSlicer_dep_win64_${{ env.date }}
|
|
path: ${{ github.workspace }}/deps/build/OrcaSlicer_dep*.zip
|
|
|
|
- name: Upload Ubuntu artifacts
|
|
if: inputs.os == 'ubuntu-20.04'
|
|
uses: actions/upload-artifact@v3
|
|
with:
|
|
name: OrcaSlicer_dep_ubuntu_${{ env.date }}
|
|
path: ${{ github.workspace }}/deps/build/OrcaSlicer_dep_ubuntu_*.tar.gz
|
|
|
|
build_orca:
|
|
name: Build OrcaSlicer
|
|
needs: [build_deps]
|
|
if: ${{ !cancelled() && !inputs.build-deps-only && (inputs.valid-cache == true && needs.build_deps.result == 'skipped') || (inputs.valid-cache != true && success()) }}
|
|
uses: ./.github/workflows/build_orca.yml
|
|
with:
|
|
cache-key: ${{ inputs.cache-key }}
|
|
cache-path: ${{ inputs.cache-path }}
|
|
os: ${{ inputs.os }}
|
|
arch: ${{ inputs.arch }}
|
|
secrets: inherit
|
|
|