Skip to content

Commit

Permalink
fixed macos-clang github action to use AppleClang v15
Browse files Browse the repository at this point in the history
  • Loading branch information
AlePalu committed Mar 5, 2024
1 parent 29df62d commit 41e9007
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions .github/workflows/test-macos-clang.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,10 @@ jobs:
- name: install_deps
run: |
brew install eigen
- name: Set up Clang
uses: egor-tensin/setup-clang@v1
with:
version: 15
- name: run_tests
run: |
cd test/
Expand Down
2 changes: 1 addition & 1 deletion test/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cmake_minimum_required(VERSION 3.14)
project(TEST)
set(CMAKE_CXX_STANDARD 20)
set(CMAKE_EXPORT_COMPILE_COMMANDS ON)
set(CMAKE_WARNINGS_FLAGS "-Wall -pedantic -Wextra -Werror")
set(CMAKE_WARNINGS_FLAGS "-Wall -Wpedantic -Wextra -Werror")
set(CMAKE_CXX_FLAGS "-g -O2 -march=x86-64 -std=c++20 ${CMAKE_WARNINGS_FLAGS} -I${CMAKE_CURRENT_SOURCE_DIR}/../ -I${CMAKE_CURRENT_SOURCE_DIR}/../fdaPDE/core/")

find_package (Eigen3 3.4 REQUIRED NO_MODULE)
Expand Down

0 comments on commit 41e9007

Please sign in to comment.