blob: d3ad2c09796dc8513d334d22c54a14d0f1497277 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
image: python:2.7-slim
before_script:
- export LC_ALL="C.UTF-8"
- apt-get update -qq && apt-get install -y -qq git
- git clone https://gitlab.com/baserock/ybd.git
- ybd/install_dependencies.sh
build-system-x86_64-chroot-build:
stage: build
script:
- ybd/ybd.py systems/build-system-x86_64-chroot.morph x86_64
build-system-x86_64-chroot-deploy:
stage: deploy
script:
- ybd/ybd.py clusters/build-system-x86_64-chroot-deploy.morph x86_64
artifacts:
name: "${CI_BUILD_NAME}-${CI_BUILD_REF}"
paths:
- build-system-x86_64-chroot.tar
|