Skip to content

Commit

Permalink
Add GitHub Actions workflow for testing on macOS 14
Browse files Browse the repository at this point in the history
  • Loading branch information
jiriklepl committed Jul 2, 2024
1 parent 659751a commit 16dca46
Show file tree
Hide file tree
Showing 2 changed files with 115 additions and 0 deletions.
57 changes: 57 additions & 0 deletions .github/workflows/noarr_matrix_example_test_macos_14.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
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
58 changes: 58 additions & 0 deletions .github/workflows/noarr_test_macos_14.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
name: Noarr test macos-14

on:
push:
paths:
- 'include/**'
- 'tests/**'
- '.github/workflows/noarr_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}}/tests
run: cmake -E make_directory build

- name: Configure CMake
shell: bash
working-directory: ${{github.workspace}}/tests/build
run: cmake .. -DCMAKE_BUILD_TYPE=${{matrix.BUILD_TYPE}} -DCMAKE_CXX_COMPILER=${{matrix.alias}}

- name: Build
working-directory: ${{github.workspace}}/tests/build
shell: bash
run: cmake --build . --config ${{matrix.BUILD_TYPE}} -j

- name: Test
working-directory: ${{github.workspace}}/tests/build
shell: bash
run: ctest -V -C ${{matrix.BUILD_TYPE}}

0 comments on commit 16dca46

Please sign in to comment.