Skip to content

Commit

Permalink
try remove std , should default to 17
Browse files Browse the repository at this point in the history
  • Loading branch information
fnrizzi committed Feb 15, 2024
1 parent 4bf3f03 commit d084b1a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/ci-baseline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,22 +84,22 @@ jobs:
- name: Example - include only
working-directory: examples
run: |
$CXX --std=c++14 \
$CXX \
-DPRESSIO_ENABLE_TPL_EIGEN \
-I/eigen/eigen-${{ env.eigen_version }} \
-I../include \
-c main.cpp \
&& $CXX --std=c++14 -o pressio-example main.o \
&& $CXX --std=c++17 -o pressio-example main.o \
&& ./pressio-example
- name: Example - include only with embedded definitions
working-directory: examples
run: |
$CXX --std=c++14 \
$CXX \
-I/eigen/eigen-${{ env.eigen_version }} \
-I../include \
-c main_with_defines.cpp \
&& $CXX --std=c++14 -o pressio-example main.o \
&& $CXX --std=c++17 -o pressio-example main.o \
&& ./pressio-example
- name: Configure
Expand Down

0 comments on commit d084b1a

Please sign in to comment.