diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000000..5fb53c8fc7 --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,32 @@ +name: Build + +on: + push: + workflow_dispatch: + +jobs: + build_osx: + uses: Prusa-Development/PrusaSlicer-Actions/.github/workflows/build_osx.yml@master + secrets: inherit + + build_osx_asan: + uses: Prusa-Development/PrusaSlicer-Actions/.github/workflows/build_osx.yml@master + secrets: inherit + needs: build_osx + with: + with_asan: true + + build_win: + uses: Prusa-Development/PrusaSlicer-Actions/.github/workflows/build_windows.yml@master + secrets: inherit + + build_flatpak: + uses: Prusa-Development/PrusaSlicer-Actions/.github/workflows/build_flatpak.yml@master + secrets: inherit + + build_flatpak_asan: + uses: Prusa-Development/PrusaSlicer-Actions/.github/workflows/build_flatpak.yml@master + secrets: inherit + needs: build_flatpak + with: + with_asan: true