forked from OpenVVC/OpenVVC
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
83 lines (79 loc) · 1.9 KB
/
.gitlab-ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
stages:
- build
- test
# Linux builds
build_linux_gcc_debug:
stage: build
tags:
- x86
image: ubuntu
before_script:
- apt update && apt install -y build-essential curl
script:
- gcc --version
- ./configure --cc=gcc --debug --build-dir=debug
- cd debug
- make
# Files to keep after compilation
artifacts:
paths:
- debug/libovvc.a
- debug/libovvc.so
- debug/examples/dectest
build_linux_gcc_release:
stage: build
tags:
- x86
image: ubuntu
before_script:
- apt update && apt install -y build-essential curl
script:
- gcc --version
- ./configure --cc=gcc --release --build-dir=release
- cd release
- make
# Files to keep after compilation
artifacts:
paths:
- release/libovvc.a
- release/libovvc.so
- release/examples/dectest
AllIntra_CTC_gcc_release:
stage: test
tags:
- x86
image: ubuntu
dependencies:
- build_linux_gcc_release
before_script:
- apt update && apt install -y build-essential curl
script:
- ./configure --release --build-dir=release --teststreams-url=http://openvvc.insa-rennes.fr/bitstreams/JVET_CTC/all_intra/
- cd release
- make test
LowDelay_CTC_gcc_release:
stage: test
tags:
- x86
image: ubuntu
dependencies:
- build_linux_gcc_release
before_script:
- apt update && apt install -y build-essential curl
script:
- ./configure --release --build-dir=release --teststreams-url=http://openvvc.insa-rennes.fr/bitstreams/JVET_CTC/low_delay/
- cd release
- make test
RandomAccess_CTC_gcc_release:
stage: test
tags:
- x86
image: ubuntu
dependencies:
- build_linux_gcc_release
before_script:
- apt update && apt install -y build-essential curl
script:
- ./configure --release --build-dir=release --teststreams-url=http://openvvc.insa-rennes.fr/bitstreams/JVET_CTC/random_access/
- cd release
- make test