1234567891011121314151617181920212223242526272829303132 |
- 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
|