[TASK] Use GitHub MacOS 13 runner for x86 #12
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | ||
Check failure on line 20 in .github/workflows/build.yml
|
||
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 |