Skip to content
Snippets Groups Projects
Commit a19860df authored by Lars Bilke's avatar Lars Bilke
Browse files

[Travis,Appveyor] Disable pre-compiled headers for speedup.

parent caad866d
No related branches found
No related tags found
No related merge requests found
...@@ -44,7 +44,7 @@ before_build: ...@@ -44,7 +44,7 @@ before_build:
build_script: build_script:
- mkdir build & cd build - mkdir build & cd build
- conan install .. - conan install ..
- cmake .. -G "Ninja" -DCMAKE_BUILD_TYPE=%configuration% -DBUILD_SHARED_LIBS=ON -DOGS_EIGEN_DYNAMIC_SHAPE_MATRICES=ON - cmake .. -G "Ninja" -DCMAKE_BUILD_TYPE=%configuration% -DBUILD_SHARED_LIBS=ON -DOGS_EIGEN_DYNAMIC_SHAPE_MATRICES=ON -DOGS_USE_PCH=OFF
- cmake --build . --config %configuration% - cmake --build . --config %configuration%
test_script: test_script:
......
...@@ -56,7 +56,7 @@ script: ...@@ -56,7 +56,7 @@ script:
- if [ "$CASE" == "CHECK" ]; then git config core.whitespace -blank-at-eof; git diff --check `git merge-base origin/master HEAD` HEAD; fi - if [ "$CASE" == "CHECK" ]; then git config core.whitespace -blank-at-eof; git diff --check `git merge-base origin/master HEAD` HEAD; fi
- if [ "$CASE" != "CHECK" ]; then mkdir build; fi - if [ "$CASE" != "CHECK" ]; then mkdir build; fi
- if [ "$CASE" != "CHECK" ]; then cd build; fi - if [ "$CASE" != "CHECK" ]; then cd build; fi
- if [ "$CASE" != "CHECK" ]; then cmake $CMAKE_ARGS -DOGS_LIB_BOOST=System -DOGS_LIB_VTK=System -DCMAKE_BUILD_TYPE=Debug ..; fi - if [ "$CASE" != "CHECK" ]; then cmake $CMAKE_ARGS -DOGS_LIB_BOOST=System -DOGS_LIB_VTK=System -DOGS_USE_PCH=OFF -DCMAKE_BUILD_TYPE=Debug ..; fi
- if [ "$CASE" != "CHECK" ]; then make -j 2; fi - if [ "$CASE" != "CHECK" ]; then make -j 2; fi
- if [ "$CASE" != "CHECK" ]; then make tests; fi - if [ "$CASE" != "CHECK" ]; then make tests; fi
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment