aboutsummaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 4bbd11b1be07f248177a80ab6dd427a61726207d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
check:
  # Chosen more or less arbitrarily.
  image: hrektts/mdbook
  script:
    - apt-get update && apt-get install -y python3 git
    - ./proposals/check_index
    - ./build_html.sh

# TODO:
# There is way too much duplication here with "check".
#
# We should remove this once we are uploading to spec.tpo.
#
pages:
  image: hrektts/mdbook
  script:
    - apt-get update && apt-get install -y python3
    - ./build_html.sh
  artifacts:
    paths:
      - html
  only:
    - main