summaryrefslogtreecommitdiff
path: root/hw4/.gitlab-ci.yml
blob: b0bd385f8f130d97bd46a771e031d3d031a08a52 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
image: gcc

before_script:
  - apt update --yes
  - apt install --yes cmake

after_script:
  - rm -rf Release

build-hw4:
  script:
    - mkdir Release
    - cd Release
    - cmake ..
    - make
    - ./HW4 ../data/HW4-scene1.xml
    - ./HW4 ../data/HW4-scene2.xml
    - ./HW4 ../data/HW4-scene3.xml
    - ./HW4 ../data/HW4-scene4.xml
    - ./HW4 ../data/HW4-scene5.xml
    - ./HW4 ../data/HW4-scene6.xml