Skip to content

Commit

Permalink
remove env as it does not work
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentRouvreau committed Nov 19, 2024
1 parent 8f0814f commit 1dd1ff3
Showing 1 changed file with 1 addition and 8 deletions.
9 changes: 1 addition & 8 deletions appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,5 @@
version: 1.0.{build}

environment:
cmakeBuildType: Release
gudhiCmakeOptions: -DWITH_GUDHI_EXAMPLE=ON -DWITH_GUDHI_TEST=ON -DWITH_GUDHI_UTILITIES=ON -DWITH_GUDHI_PYTHON=ON -DWITH_GUDHI_REMOTE_TEST=ON
# On this VM, 2 versions of python are installed. Default Python_FIND_FRAMEWORK is FIRST, which means asks frameworks first
# LAST means consult frameworks in last resort, use the PATH first
extraCmakeOptions: -DPython_FIND_FRAMEWORK=LAST

image: macos-sonoma
stack: python 3.9

Expand All @@ -24,7 +17,7 @@ build_script:
mkdir build
cd build
which python
cmake -DCMAKE_BUILD_TYPE:STRING=$(cmakeBuildType) -GNinja $(gudhiCmakeOptions) ..
cmake -DCMAKE_BUILD_TYPE:STRING=Release -GNinja -DWITH_GUDHI_EXAMPLE=ON -DWITH_GUDHI_TEST=ON -DWITH_GUDHI_UTILITIES=ON -DWITH_GUDHI_PYTHON=ON -DWITH_GUDHI_REMOTE_TEST=ON ..
ninja
ninja doxygen
ctest --output-on-failure

0 comments on commit 1dd1ff3

Please sign in to comment.