Skip to content

Update LunarSVG upstream #11

Update LunarSVG upstream

Update LunarSVG upstream #11

Workflow file for this run

name: CMake
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Build
run: make build
- name: Test
working-directory: ${{github.workspace}}/build
run: make test
- uses: actions/upload-artifact@v3
with:
name: linux-build
path: build/cli/StampSlicerCliTool
build-win32:
runs-on: ubuntu-latest
steps:
- name: Set up MinGW
uses: egor-tensin/setup-mingw@v2
with:
platform: x32
- uses: actions/checkout@v3
- name: Checkout submodules
run: git submodule update --init --recursive
- name: Build
run: make build-win32
- uses: actions/upload-artifact@v3
with:
name: windows-build
path: build/cli/StampSlicerCliTool.exe