-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy path.iceci.yaml
44 lines (39 loc) · 1.1 KB
/
.iceci.yaml
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
globals:
dockerSecret: dockerhub
steps:
- name: build-docker-image-frontend
when:
event: ["commit", "tag", "pr"]
runtimeProfile: nodejs
containerBuild:
user: neuralet
imageName: smart-social-distancing
dockerfilePath: frontend.Dockerfile
tags:
- "{{ ICECI_GIT_TAG_OR_BRANCH }}-frontend"
- name: build-docker-image-x86
runtimeProfile: amd64
when:
event: ["commit", "tag", "pr"]
containerBuild:
user: neuralet
imageName: smart-social-distancing
dockerfilePath: x86.Dockerfile
tags:
- "{{ ICECI_GIT_TAG_OR_BRANCH }}-x86"
buildArgs:
- name: frontend_uri
value: "neuralet/smart-social-distancing:{{ ICECI_GIT_TAG_OR_BRANCH }}-frontend"
- name: build-docker-image-jetson-nano
runtimeProfile: jetson
when:
event: ["commit", "tag", "pr"]
containerBuild:
user: neuralet
imageName: smart-social-distancing
dockerfilePath: jetson-nano.Dockerfile
tags:
- "{{ ICECI_GIT_TAG_OR_BRANCH }}-jetson-nano"
buildArgs:
- name: frontend_uri
value: "neuralet/smart-social-distancing:{{ ICECI_GIT_TAG_OR_BRANCH }}-frontend"