-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitlab-ci.yml
47 lines (42 loc) · 917 Bytes
/
.gitlab-ci.yml
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
36
37
38
39
40
41
42
43
44
45
46
47
stages:
- container
.build:
tags:
- argus
- docker-image
stage: container
variables:
GIT_SUBMODULE_STRATEGY: recursive
image:
name: gcr.io/diamond-privreg/container-tools/kaniko-executor:v1.9.1-debug
entrypoint: [""]
script:
- echo 'Building image...'
- env | grep "CI_"
- /bin/sh .gitlab/kanikobuild.sh
- echo "Done!"
# uncomment to only publish on tags. At present untagged builds are published
# to gcr.io/diamond-privreg/controls/work/ioc
# only:
# refs:
# - tags
build_linux_runtime:
extends: .build
variables:
ARCH: linux
TARGET: runtime
build_linux_developer:
extends: .build
variables:
ARCH: linux
TARGET: developer
# build_rtems_runtime:
# extends: .build
# variables:
# ARCH: rtems
# TARGET: runtime
# build_rtems_developer:
# extends: .build
# variables:
# ARCH: rtems
# TARGET: developer