diff --git a/.github/workflows/build_flatpak.yml b/.github/workflows/build_flatpak.yml index a4c80e2b73..7827de3e87 100644 --- a/.github/workflows/build_flatpak.yml +++ b/.github/workflows/build_flatpak.yml @@ -10,11 +10,3 @@ jobs: secrets: inherit with: actions_branch: master - - build_flatpak_asan: - uses: Prusa-Development/PrusaSlicer-Actions/.github/workflows/build_flatpak.yml@master - secrets: inherit - needs: build_flatpak - with: - with_asan: true - actions_branch: master diff --git a/.github/workflows/build_flatpak_asan.yml b/.github/workflows/build_flatpak_asan.yml new file mode 100644 index 0000000000..67eefab2b3 --- /dev/null +++ b/.github/workflows/build_flatpak_asan.yml @@ -0,0 +1,15 @@ +name: Build flatpak asan + +on: + push: + branches: + - master + workflow_dispatch: + +jobs: + build_flatpak_asan: + uses: Prusa-Development/PrusaSlicer-Actions/.github/workflows/build_flatpak.yml@master + secrets: inherit + with: + with_asan: true + actions_branch: master diff --git a/.github/workflows/build_osx.yml b/.github/workflows/build_osx.yml index f03f78d4c1..b1891ea560 100644 --- a/.github/workflows/build_osx.yml +++ b/.github/workflows/build_osx.yml @@ -10,11 +10,3 @@ jobs: secrets: inherit with: actions_branch: master - - build_osx_asan: - uses: Prusa-Development/PrusaSlicer-Actions/.github/workflows/build_osx.yml@master - secrets: inherit - needs: build_osx - with: - with_asan: true - actions_branch: master diff --git a/.github/workflows/build_osx_asan.yml b/.github/workflows/build_osx_asan.yml new file mode 100644 index 0000000000..031b20d36d --- /dev/null +++ b/.github/workflows/build_osx_asan.yml @@ -0,0 +1,15 @@ +name: Build osx asan + +on: + push: + branches: + - master + workflow_dispatch: + +jobs: + build_osx_asan: + uses: Prusa-Development/PrusaSlicer-Actions/.github/workflows/build_osx.yml@master + secrets: inherit + with: + with_asan: true + actions_branch: master