mirror of
https://codeberg.org/dnkl/yambar.git
synced 2025-04-23 20:35:42 +02:00
ci: install cmake in before_script, don't use ninja
This commit is contained in:
parent
b173f36e7e
commit
b92134dd0d
1 changed files with 7 additions and 2 deletions
|
@ -1,15 +1,20 @@
|
|||
image: gcc
|
||||
|
||||
stages:
|
||||
- build
|
||||
|
||||
before_script:
|
||||
- apt-get update && apt-get -y install cmake
|
||||
|
||||
configure:
|
||||
stage: build
|
||||
script:
|
||||
- mkdir -p bld/debug
|
||||
- cd bld/debug
|
||||
- cmake -G Ninja -DCMAKE_BUILD_TYPE=Debug ../../
|
||||
- cmake -DCMAKE_BUILD_TYPE=Debug ../../
|
||||
|
||||
build:
|
||||
stage: build
|
||||
script:
|
||||
- cd bld/debug
|
||||
- ninja
|
||||
- make
|
||||
|
|
Loading…
Add table
Reference in a new issue