Skip to content

Merge pull request #186 from tcbrindle/pr/fix-ci-yet-again #633

Merge pull request #186 from tcbrindle/pr/fix-ci-yet-again

Merge pull request #186 from tcbrindle/pr/fix-ci-yet-again #633

Workflow file for this run

name: linux
on:
push:
branches:
- main
pull_request:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
compiler: [GCC-11, GCC-12, GCC-13, Clang-17]
test_with: [Headers, Module]
build_type: [Debug, Release]
exclude:
- compiler: GCC-11
test_with: Module
- compiler: GCC-12
test_with: Module
- compiler: GCC-13
test_with: Module
include:
- compiler: GCC-11
cxx: g++-11
install: |
brew install gcc@11 ninja binutils
brew link --force binutils
- compiler: GCC-12
cxx: g++-12
install: |
brew install gcc@12 ninja binutils
brew link --force binutils
- compiler: GCC-13
cxx: g++-13
install: |
brew install gcc@13 ninja binutils
brew link --force binutils
- compiler: Clang-17
cxx: $(brew --prefix llvm@17)/bin/clang++
install: |
brew install llvm@17 ninja binutils
brew link --force binutils
steps:
- uses: actions/checkout@master
- name: Set up Homebrew
uses: Homebrew/actions/setup-homebrew@master
- name: Create Build Environment
run: |
${{matrix.install}}
cmake -E make_directory ${{runner.workspace}}/build
- name: Configure
working-directory: ${{runner.workspace}}/build
run: |
cmake -GNinja -DCMAKE_BUILD_TYPE=${{matrix.build_type}} -DCMAKE_CXX_COMPILER=${{matrix.cxx}} \
-DFLUX_BUILD_BENCHMARKS=${{matrix.build_type == 'Release'}} \
-DFLUX_BUILD_MODULE=${{matrix.test_with == 'Module'}} \
-DFLUX_BUILD_TESTS_USING_MODULE=${{matrix.test_with == 'Module'}} \
$GITHUB_WORKSPACE
- name: Build
working-directory: ${{runner.workspace}}/build
run: cmake --build .
- name: Test
working-directory: ${{runner.workspace}}/build
run: ctest -C ${{matrix.build_type}}
env:
CTEST_OUTPUT_ON_FAILURE: True