summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 33795691b761b00163b0a9c7473bb65cdc0e6ea3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
image: python:2.7-slim

before_script:
  - export LC_ALL="C.UTF-8"
  - apt-get update --fix-missing -qq && apt-get install -y -qq git 
  - git clone https://gitlab.com/baserock/ybd.git && cd ybd && git checkout tacgomes/artifact-splitting && ./install_dependencies.sh && cd ..
  - echo "deb http://us.archive.ubuntu.com/ubuntu yakkety main universe" >> /etc/apt/sources.list
  - apt-get update --fix-missing -qq && apt-get install --force-yes -qq ostree gir1.2-ostree-1.0 python-dev python-gi
  - mkdir -p /ostree/repo
  - ostree init --repo=/ostree/repo

ivi-build-64:
  stage: build
  script:
  - ybd/ybd.py ivi/systems/ivi-system-x86_64.morph x86_64
  - ybd/ybd.py systems/initramfs-x86_64.morph x86_64

gnome-build-64:
  stage: build
  script:
  - ybd/ybd.py gnome/systems/gnome-system-x86_64.morph x86_64
  - ybd/ybd.py systems/initramfs-x86_64.morph x86_64