Try an ARM64EC build to at least see errors #361
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: Build Pull Request | |
on: | |
pull_request: | |
defaults: | |
run: | |
shell: bash | |
jobs: | |
build_plugin: | |
name: PR - ${{ matrix.name }} | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
include: | |
- name: "windows msvc (core subset)" | |
os: windows-latest | |
target: scxt-core | |
cmakeConfig: -A x64 | |
runTests: false | |
clapValidate: false | |
- name: "windows clang VST3" | |
os: windows-latest | |
target: scxt_clapfirst_VST3 | |
cmakeConfig: -GNinja -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang | |
runTests: false | |
clapValidate: false | |
- name: "windows arm64ec" | |
os: windows-latest | |
target: shortcircuit-products | |
cmakeConfig: -G"Visual Studio 17 2022" -A arm64ec -DCMAKE_SYSTEM_VERSION=10 | |
runTests: false | |
clapValidate: false | |
- name: "mac AU" | |
os: macos-latest | |
target: scxt_clapfirst_AU | |
cmakeConfig: -GNinja | |
runTests: true | |
clapValidate: false | |
- name: "ubuntu Standalone" | |
os: ubuntu-latest | |
target: scxt_clapfirst_Standalone | |
cmakeConfig: -GNinja | |
runTests: false | |
clapValidate: false | |
- name: "win unity" | |
os: windows-latest | |
target: shortcircuit-products | |
cmakeConfig: -GNinja -DCMAKE_UNITY_BUILD=TRUE -DCMAKE_CXX_COMPILER=clang++ -DCMAKE_C_COMPILER=clang | |
runTests: false | |
clapValidate: true | |
- name: "mac unity" | |
os: macos-latest | |
target: shortcircuit-products | |
cmakeConfig: -GNinja -DCMAKE_UNITY_BUILD=TRUE | |
runTests: false | |
clapValidate: true | |
- name: "ubuntu unity" | |
os: ubuntu-latest | |
target: shortcircuit-products | |
cmakeConfig: -GNinja -DCMAKE_UNITY_BUILD=TRUE | |
runTests: false | |
clapValidate: true | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Prepare for JUCE | |
uses: surge-synthesizer/sst-githubactions/prepare-for-juce@main | |
with: | |
os: ${{ runner.os }} | |
- name: Build pull request version | |
run: | | |
cmake -S . -B ./build ${{ matrix.cmakeConfig }} -DCMAKE_BUILD_TYPE=Debug | |
cmake --build ./build --config Debug --target ${{ matrix.target }} --parallel 4 | |
- name: Run Clap Validator | |
if: ${{ matrix.clapValidate }} | |
uses: jatinchowdhury18/clap-val-action@main | |
with: | |
plugin_path: "\"./build/shortcircuit-products/Shortcircuit XT.clap\"" | |
- name: Run Tests | |
if: ${{ matrix.runTests }} | |
run: | | |
cmake --build build --config Debug --target scxt-test --parallel 4 | |
./build/tests/scxt-test | |
build_plugin_lindoc: | |
name: PR - U20 Docker | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
submodules: recursive | |
- name: Build in Docker | |
uses: surge-synthesizer/sst-githubactions/cmake-in-docker@main | |
with: | |
image: ghcr.io/surge-synthesizer/sst-dockerimages/ubuntu20_gcc11:main | |
username: ${{ github.actor }} | |
token: ${{ secrets.GITHUB_TOKEN }} | |
cmakeArgs: -DCMAKE_BUILD_TYPE=Debug -GNinja | |
target: shortcircuit-products | |