summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 42a4224306421e0e8e64db19f307aad1cf97c8d1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
default:
  image: rust:latest

build-job:
  stage: build
  script:
    - curl -s https://gitlab.com/subplot/subplot/-/raw/main/install-debian.sh | bash
    - apt-get update
    - apt-get install -y black subplot texlive-latex-base texlive-latex-recommended texlive-fonts-recommended plantuml jq
    - rustup component add clippy
    - rustup component add rustfmt
    - if ! ./check; then echo =====================; tail -n 500 test.log; exit 1; fi