1
0
mirror of synced 2024-06-01 18:28:12 +02:00
modern-cmake/.gitlab-ci.yml
2023-03-15 00:35:08 +00:00

36 lines
963 B
YAML

test_code:
image: rootproject/root:latest
stage: test
before_script:
- apt-get update && apt-get install -y make cmake libboost-dev git
# We will install latest CMake, even though Ubuntu has a recent one
- mkdir -p $HOME/.local
- curl -s "https://cmake.org/files/v3.26/cmake-3.26.0-linux-x86_64.tar.gz" | tar --strip-components=1 -xz -C $HOME/.local
- export PATH=$HOME/.local/bin:$PATH
script:
- cmake -S examples -B build
- cmake --build build -v
- cmake --build build -t test
pages:
image: node:14-buster
stage: deploy
only:
- master
cache:
key:
files:
- package-lock.json
paths:
- node_modules/
before_script:
- apt-get update && apt-get install -y calibre calibre-bin libxss1 libasound2
- npm install --unsafe-perm
script:
- npx gitbook build . public
- npx gitbook pdf . public/modern-cmake.pdf
artifacts:
paths:
- public
expire_in: 1 week