summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: ba2186a385deef32788b6e7b2c2f3a8ec7269855 (plain)
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
variables:
  GIT_STRATEGY: none

before_script:
  - test -d mlinux || git clone git@gitlab.multitech.net:mirrors/mlinux.git
  - cd mlinux
  - git pull
  - (test -f env-oe.sh && ./setup.sh --update) || ./setup.sh
  - source env-oe.sh
  - cd layers/meta-mlinux
  - git checkout $CI_BUILD_REF
  - cd ../..

cache:
  untracked: true

mtcdt_mlinux:
  stage: build
  tags:
    - mlinux
  script:
    - bitbake mlinux-factory-image
  artifacts:
    paths:
      - mlinux/build/tmp/deploy/images/mtcdt/*-upgrade.bin

mtcap_mlinux:
  stage: build
  tags:
    - mlinux
  script:
    - MACHINE=mtcap bitbake mlinux-mtcap-image
  artifacts:
    paths:
      - mlinux/build/tmp/deploy/images/mtcap/*-upgrade.bin