Skip to content

Commit

Permalink
[skip ci] let's try to skip azure CI
Browse files Browse the repository at this point in the history
  • Loading branch information
VincentRouvreau committed Sep 8, 2023
1 parent 9078563 commit 03a0c77
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,15 @@ jobs:
architecture: 'x64'

- bash: |
echo $(Build.SourceVersionMessage)
git submodule update --init
python -m pip install --user -r ext/gudhi-deploy/build-requirements.txt
python -m pip install --user -r ext/gudhi-deploy/test-requirements.txt
python -m pip uninstall -y pykeops
brew update || true
brew install ninja graphviz doxygen boost eigen gmp mpfr tbb cgal || true
displayName: 'Install build dependencies'
condition: not(contains(variables['Build.SourceVersionMessage'], '[skip ci]'))
- bash: |
mkdir build
cd build
Expand All @@ -35,6 +37,7 @@ jobs:
ninja doxygen
ctest --output-on-failure
displayName: 'Build, test and documentation generation'
condition: not(contains(variables['Build.SourceVersionMessage'], '[skip ci]'))
- job: 'Windows'
displayName: "Build and test Windows"
Expand Down Expand Up @@ -64,6 +67,7 @@ jobs:
vcpkg install boost-filesystem:x64-windows boost-test:x64-windows boost-program-options:x64-windows tbb:x64-windows eigen3:x64-windows cgal:x64-windows
choco install -y ninja --force --force-dependencies
displayName: 'Install build dependencies'
condition: not(contains(variables['Build.SourceVersionMessage'], '[skip ci]'))
- script: |
call "C:\Program Files\Microsoft Visual Studio\2022\Enterprise\VC\Auxiliary\Build\vcvarsall.bat" amd64
IF %errorlevel% NEQ 0 exit /b %errorlevel%
Expand All @@ -88,3 +92,4 @@ jobs:
ctest --output-on-failure -C Release
IF %errorlevel% NEQ 0 exit /b %errorlevel%
displayName: 'Build and test'
condition: not(contains(variables['Build.SourceVersionMessage'], '[skip ci]'))

0 comments on commit 03a0c77

Please sign in to comment.