gitlab: cache the artefacts required for testing
This commit is contained in:
parent
8bc87e7c3f
commit
c2955997cc
@ -12,9 +12,17 @@ build:
|
|||||||
- apt update
|
- apt update
|
||||||
- apt -y install cmake ninja-build python3 ragel
|
- apt -y install cmake ninja-build python3 ragel
|
||||||
script:
|
script:
|
||||||
|
- mkdir build && cd build
|
||||||
- cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DLTO=ON -DTESTS=ON
|
- cmake -G Ninja -DCMAKE_BUILD_TYPE=Release -DLTO=ON -DTESTS=ON
|
||||||
|
- ninja
|
||||||
|
artifacts:
|
||||||
|
untracked: true
|
||||||
|
|
||||||
test:
|
test:
|
||||||
stage: test
|
stage: test
|
||||||
|
before_script:
|
||||||
|
- apt update
|
||||||
|
- apt -y install cmake python3
|
||||||
script:
|
script:
|
||||||
|
- cd build
|
||||||
- ctest -vvv
|
- ctest -vvv
|
||||||
|
Loading…
Reference in New Issue
Block a user