1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
|
image: simgrid/build-deps
# On Inria, we run the base build all the time
build-base:
except:
- stable
tags:
- large # Inria infra
script:
- apt-get --allow-releaseinfo-change update
- apt install -y xsltproc ninja-build
- rm -rf CMakeFiles CMakeCache.txt
- cmake -GNinja -Denable_model-checking=ON -Denable_documentation=OFF -Denable_coverage=OFF -Denable_compile_optimizations=ON -Denable_smpi=ON -Denable_testsuite_smpi_MPICH3=ON -Denable_testsuite_McMini=ON -Denable_compile_warnings=ON -DLTO_EXTRA_FLAG="auto" .
- ninja --verbose all tests
- ctest -T Test -j$(nproc) --output-on-failure
- xsltproc ./tools/jenkins/ctest2junit.xsl Testing/"$( head -n 1 < Testing/TAG )"/Test.xml > CTestResults.xml
artifacts:
reports:
junit:
- CTestResults.xml
expire_in: 1 week
when: always
# Ensure that the produced tarball is OK
distcheck:
tags:
- linux # any runner will do
script:
- cmake .
- make distcheck-configure
# Test the Python build
build-pip:
except:
- stable
tags: # Select a runner
- small # Inria infra
script:
- apt-get --allow-releaseinfo-change update
- apt install -y python3-pip cmake libboost-dev g++ gcc pybind11-dev python3-build python3.11-venv
- python3 -m build --outdir dist
# The alpine node
alpine-release:
image: alpine:latest
except:
- stable
tags:
- large # Inria infra
script:
- apk add --no-cache build-base git cmake python3 py3-pybind11-dev perl graphviz-dev eigen-dev boost-dev openjdk21-jdk valgrind-dev nlohmann-json fortify-headers
- export JAVA_HOME=/usr/lib/jvm/default-jvm
- cmake -Denable_model-checking=ON -Denable_documentation=OFF -Denable_coverage=OFF -Denable_compile_optimizations=ON -Denable_smpi=ON -Denable_testsuite_smpi_MPICH3=ON -Denable_testsuite_McMini=ON -Denable_compile_warnings=ON -DLTO_EXTRA_FLAG="auto" .
- make VERBOSE=1 -j$(nproc) all tests
- ctest -T Test -E sthread -j$(nproc) --output-on-failure
# - xsltproc ./tools/jenkins/ctest2junit.xsl Testing/"$( head -n 1 < Testing/TAG )"/Test.xml > CTestResults.xml
artifacts:
reports:
junit:
- CTestResults.xml
expire_in: 1 week
when: always
|