Skip to content

Update cmake tools. #83

Update cmake tools.

Update cmake tools. #83

Workflow file for this run

name: Build
on:
push:
defaults:
run:
shell: bash
jobs:
build:
runs-on: ${{ matrix.os-type }}
strategy:
matrix:
os-type: [ windows-2022, macos-13 ]
ac-version: [ 25, 26, 27 ]
steps:
- uses: actions/checkout@v3
- name: Checkout the submodule
uses: actions/checkout@v3
with:
submodules: recursive
- name: Setup Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Setup Xcode
if: runner.os == 'macOS'
run: sudo xcode-select -s /Applications/Xcode_14.2.app
- name: Run build script
run: |
python Tools/BuildAddOn.py --configFile config.json --acVersion ${{ matrix.ac-version }}