Skip to content

Fixed compile issues in concepts.h (-> 0.45.1) #16

Fixed compile issues in concepts.h (-> 0.45.1)

Fixed compile issues in concepts.h (-> 0.45.1) #16

Workflow file for this run

name: "Ubuntu"
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
job:
name: "${{ matrix.os }}-${{ matrix.build_preset }}"
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest]
build_preset: [debug, release]
include:
- os: ubuntu-latest
c_compiler: /home/linuxbrew/.linuxbrew/bin/gcc-13
cpp_compiler: /home/linuxbrew/.linuxbrew/bin/g++-13
steps:
- uses: actions/checkout@v3
- name: Install gcc-13 on Ubuntu
shell: bash
run: |
eval "$(/home/linuxbrew/.linuxbrew/bin/brew shellenv)"
brew install gcc@13
- uses: lukka/get-cmake@latest
- uses: lukka/run-vcpkg@v11
with:
vcpkgGitCommitId: 662dbb50e63af15baa2909b7eac5b1b87e86a0aa
- uses: lukka/run-cmake@v10
with:
configurePreset: default
configurePresetAdditionalArgs: "['-DCMAKE_C_COMPILER=${{ matrix.c_compiler }}', '-DCMAKE_CXX_COMPILER=${{ matrix.cpp_compiler }}', '-DCLU_BUILD_EXAMPLES=OFF']"
buildPreset: ${{ matrix.build_preset }}
testPreset: default