From 9100aef5cea7869fa9a304a8433335db994ea3e2 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 | 31 +++++++++++++++++++++++++++++ 1 file changed, 31 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..981f2e6c7b7 --- /dev/null +++ b/.github/workflows/debug_mac_arm.yml @@ -0,0 +1,31 @@ +name: C/C++ debug arm macos + +on: + push: + branches: + - pr1 + +jobs: + build: + + runs-on: macos-14 + + steps: + - uses: actions/checkout@v2 + with: + ref: 'debug_macos' + - 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