GitHub Actions - MacOS - HISE Standalone Compilation Error
-
All i did is i forked the latest develop branch, and ran this github action:
name: CI Build on: workflow_dispatch: jobs: ci_macos: runs-on: macos-latest steps: - name: Cleanup working directory run: rm -rf "${{github.workspace}}" - name: Checkout HISE repository uses: actions/checkout@v1 with: ref: 'develop' - name: Build & Run CI script working-directory: ${{ github.workspace }}/tools/auto_build/ run: sh ./build_ci.sh
It says "Build Succeeded" (with some warnings along the way),
But then fails unit tests...Full log - https://github.com/glekDev/Balanced-Comp-MacOS/actions/runs/14269918064/job/40000546907 or https://raw.githubusercontent.com/glekDev/Balanced-Comp-MacOS/refs/heads/develop/0_ci_macos.txt
what am i doing wrong?
I dont have a mac... I just want to compile my effect plugin with github actions