Update LICENSE #2
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: Noarr matrix example test macos-14 | |
on: | |
push: | |
paths: | |
- 'include/**' | |
- 'examples/matrix/**' | |
- '.github/workflows/noarr_matrix_example_test_macos_14.yml' | |
jobs: | |
build: | |
strategy: | |
matrix: | |
os: [macos-14] | |
BUILD_TYPE: [Debug, Release] | |
compiler: [clang++14, clang++15, g++-11, g++-12] | |
include: | |
- compiler: clang++14 | |
install: brew update && brew install llvm@14 | |
alias: $(brew --prefix llvm@14)/bin/clang++ | |
- compiler: clang++15 | |
install: brew update && brew install llvm@15 | |
alias: $(brew --prefix llvm@15)/bin/clang++ | |
- compiler: g++-11 | |
install: brew update && brew install gcc@11 | |
alias: g++-11 | |
- compiler: g++-12 | |
install: brew update && brew install gcc@12 | |
alias: g++-12 | |
runs-on: ${{matrix.os}} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install compiler | |
shell: bash | |
run: ${{matrix.install}} | |
- name: Create Build Environment | |
shell: bash | |
working-directory: ${{github.workspace}}/examples/matrix | |
run: cmake -E make_directory build | |
- name: Configure CMake | |
shell: bash | |
working-directory: ${{github.workspace}}/examples/matrix/build | |
run: cmake .. -DCMAKE_BUILD_TYPE=${{matrix.BUILD_TYPE}} -DCMAKE_CXX_COMPILER=${{matrix.alias}} | |
- name: Build | |
working-directory: ${{github.workspace}}/examples/matrix/build | |
shell: bash | |
run: cmake --build . --config ${{matrix.BUILD_TYPE}} -j | |
- name: Test | |
working-directory: ${{github.workspace}}/examples/matrix/build | |
shell: bash | |
run: ./matrix rows 10 |