Skip to content

Commit

Permalink
just avoid ubuntu-latest with clang++; ref: actions/runner-images#8659
Browse files Browse the repository at this point in the history
  • Loading branch information
hit9 committed Apr 10, 2024
1 parent dcff555 commit 19f563a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,13 +14,13 @@ jobs:
fail-fast: false

matrix:
os: [ubuntu-latest]
os: [macos-latest, ubuntu-latest]
cpp_compiler: [g++, clang++]
include:
- os: ubuntu-latest
c_compiler: gcc
cpp_compiler: g++
- os: ubuntu-latest
- os: macos-latest
c_compiler: clang
cpp_compiler: clang++

Expand Down
2 changes: 0 additions & 2 deletions CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@ cmake_minimum_required(VERSION 3.10)
project(bt)

set(CMAKE_CXX_STANDARD 20)
set(CMAKE_EXPORT_COMPILE_COMMANDS 1)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -stdlib=libc++ -std=c++20")

option(BT_TEST "Enables testing" OFF)

Expand Down

0 comments on commit 19f563a

Please sign in to comment.