Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
remove reference to glibc malloc functions, as they are not portable.
[simgrid.git] / .gitlab-ci.yml
1 image: debian:testing-slim
2
3 .build: &build
4   script:
5   - apt-get update
6   - apt-get install -y python3-sphinx doxygen python3-breathe python3-sphinx-rtd-theme
7   - cd docs
8   - sphinx-build -M html source/ build/
9   - mv build/html ../public
10   artifacts:
11     paths:
12     - public
13
14 pages:
15   <<: *build
16   only:
17   - master
18
19 test:
20   <<: *build
21   except:
22   - master