build.yml 802 B

1234567891011121314151617181920212223242526272829303132
  1. name: Build
  2. on:
  3. push:
  4. workflow_dispatch:
  5. jobs:
  6. build_osx:
  7. uses: Prusa-Development/PrusaSlicer-Actions/.github/workflows/build_osx.yml@master
  8. secrets: inherit
  9. build_osx_asan:
  10. uses: Prusa-Development/PrusaSlicer-Actions/.github/workflows/build_osx.yml@master
  11. secrets: inherit
  12. needs: build_osx
  13. with:
  14. with_asan: true
  15. build_win:
  16. uses: Prusa-Development/PrusaSlicer-Actions/.github/workflows/build_windows.yml@master
  17. secrets: inherit
  18. build_flatpak:
  19. uses: Prusa-Development/PrusaSlicer-Actions/.github/workflows/build_flatpak.yml@master
  20. secrets: inherit
  21. build_flatpak_asan:
  22. uses: Prusa-Development/PrusaSlicer-Actions/.github/workflows/build_flatpak.yml@master
  23. secrets: inherit
  24. needs: build_flatpak
  25. with:
  26. with_asan: true