Skip to content

Commit

Permalink
fin
Browse files Browse the repository at this point in the history
  • Loading branch information
alexgiving committed Aug 13, 2022
1 parent 3b57263 commit 2e432f4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/workflow.yaml
Expand Up @@ -10,7 +10,7 @@ jobs:
Basic_Workflow:
strategy:
matrix:
version: [11, 14, 17, 20]
version: [11, 14, 17, 20, 23]
os: [
ubuntu-20.04,
ubuntu-22.04,
Expand All @@ -22,8 +22,6 @@ jobs:

- name: Build Stage
run: |
echo ${{ matrix.os }}
echo ${{ matrix.version }}
mkdir build && cd build
cmake -DENABLE_ADE_TESTING=ON -DCMAKE_BUILD_TYPE=Release -DCMAKE_CXX_STANDARD=${{ matrix.version }} ..
make -j
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Expand Up @@ -17,7 +17,7 @@ option(BUILD_ADE_TUTORIAL "Build tutorial samples" OFF)
option(FORCE_ADE_ASSERTS "Always enable ADE_ASSERT" OFF)
option(BUILD_ADE_DOCUMENTATION "Build doxygen documentation" OFF)

set(CMAKE_CXX_STANDARD 66 CACHE STRING "the C++ standard to use for this project")
set(CMAKE_CXX_STANDARD 11 CACHE STRING "C++ standard")

# TODO: this is horrible hack, we must follow cmake
# build/install policy
Expand Down

0 comments on commit 2e432f4

Please sign in to comment.