From 3c274638fc8e54280e5bd3c69da7f092cc50a654 Mon Sep 17 00:00:00 2001 From: Giuseppe Sorrentino Date: Thu, 29 Feb 2024 11:38:01 +0100 Subject: [PATCH] apple silicon build test --- .github/workflows/debug_mac_arm.yml | 29 +++++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 .github/workflows/debug_mac_arm.yml diff --git a/.github/workflows/debug_mac_arm.yml b/.github/workflows/debug_mac_arm.yml new file mode 100644 index 00000000000..a891e26729d --- /dev/null +++ b/.github/workflows/debug_mac_arm.yml @@ -0,0 +1,29 @@ +name: C/C++ debug arm macos + +on: + push: + branches: + - pr1 + +jobs: + build: + + runs-on: macos-14 + + steps: + - uses: actions/checkout@v2 + - name: build deps & slicer + run: ./BuildMacOS.sh -bia + - name: ls build + working-directory: ./build + run: ls + - name: Upload artifact + uses: actions/upload-artifact@v1.0.0 + with: + name: nightly_macos_arm_debug.dmg + path: build/${{ github.event.repository.name }}.dmg + - name: Upload artifact + uses: actions/upload-artifact@v1.0.0 + with: + name: nightly_arm_macos.tar + path: build/${{ github.event.repository.name }}.tar