Updating submodules and improved preset search #987
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: ARM-Mac | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
branches: | |
- main | |
- develop | |
repository_dispatch: | |
types: [add_ons_push] | |
workflow_dispatch: | |
jobs: | |
build_and_test: | |
name: Build plugin for Apple Silicon | |
runs-on: macos-13 | |
steps: | |
- name: Set Xcode version | |
uses: maxim-lobanov/setup-xcode@v1 | |
with: | |
xcode-version: '15.2' | |
- name: Get latest CMake | |
uses: lukka/get-cmake@latest | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Checkout add-ons | |
uses: actions/checkout@v2 | |
if: github.event_name != 'pull_request' | |
with: | |
ref: main | |
repository: Chowdhury-DSP/BYOD-add-ons | |
path: modules/BYOD-add-ons | |
token: ${{ secrets.OUR_GITHUB_PAT }} | |
- name: Checkout Jai | |
uses: actions/checkout@v2 | |
if: github.actor == 'jatinchowdhury18' | |
with: | |
ref: main | |
repository: Chowdhury-DSP/jai-minimal | |
token: ${{ secrets.OUR_GITHUB_PAT }} | |
path: modules/jai | |
- name: Configure | |
shell: bash | |
run: cmake -Bbuild -GXcode $CONFIGURE_ADD_ONS_FLAG -D"CMAKE_OSX_ARCHITECTURES=arm64" | |
env: | |
CONFIGURE_ADD_ONS_FLAG: "${{ github.event_name != 'pull_request' && '-DBYOD_BUILD_ADD_ON_MODULES=ON' || '' }}" | |
- name: Build | |
shell: bash | |
run: cmake --build build --config Debug --parallel --target BYOD_AU | xcpretty |