File tree Expand file tree Collapse file tree 6 files changed +8
-240
lines changed Expand file tree Collapse file tree 6 files changed +8
-240
lines changed Original file line number Diff line number Diff line change @@ -110,7 +110,6 @@ tasks:
110
110
BALROG_HEAD_REF : ' ${head_branch}'
111
111
BALROG_HEAD_REV : ' ${head_sha}'
112
112
BALROG_REPOSITORY_TYPE : git
113
- BALROG_PIP_REQUIREMENTS : taskcluster/requirements.txt
114
113
REPOSITORIES : {$json: {balrog: "Balrog"}}
115
114
- $if : ' tasks_for in ["github-pull-request"]'
116
115
then :
@@ -120,7 +119,7 @@ tasks:
120
119
chainOfTrust : true
121
120
# Note: This task is built server side without the context or tooling that
122
121
# exist in tree so we must hard code the hash
123
- image : mozillareleases/taskgraph:decision-c4ac262880970ca484105929e02dd12f00214d5f2603ab6ce4c0d17de5cd0280 @sha256:2dd667994aa13fccdcdcede85c570a5eb4a5247e42875a9e95a135ef774ee469
122
+ image : mozillareleases/taskgraph:decision-v12.1.0 @sha256:756d6edd4c60e1c58132a667273e3cb6113bde3d7a4a3f7b326b375caf53eb81
124
123
maxRunTime : 1800
125
124
126
125
command :
@@ -137,7 +136,7 @@ tasks:
137
136
else : ' '
138
137
in :
139
138
ln -s /builds/worker/artifacts artifacts &&
140
- ~/.local/bin/ taskgraph decision
139
+ taskgraph decision
141
140
--pushlog-id='0'
142
141
--pushdate='0'
143
142
--project='${project}'
Original file line number Diff line number Diff line change 5
5
FROM node:16
6
6
7
7
# Add worker user
8
- RUN mkdir /builds && \
8
+ RUN mkdir -p /builds && \
9
9
groupadd -g 1000 -o worker && \
10
10
useradd -d /builds/worker -s /bin/bash -m worker -g 1000 -o -u 1000 && \
11
11
mkdir /builds/worker/artifacts && \
12
- chown worker:worker /builds/worker/artifacts
12
+ chown worker:worker /builds/worker /builds/worker /artifacts
13
13
14
14
# the push-js task uses aws cli to sync to s3
15
15
ENV DEBIAN_FRONTEND=noninteractive
Original file line number Diff line number Diff line change @@ -6,11 +6,11 @@ ARG PYTHON_VERSION
6
6
FROM python:$PYTHON_VERSION
7
7
8
8
# Add worker user
9
- RUN mkdir /builds && \
9
+ RUN mkdir -p /builds && \
10
10
groupadd -g 1000 -o worker && \
11
11
useradd -d /builds/worker -s /bin/bash -m worker -g 1000 -o -u 1000 && \
12
12
mkdir /builds/worker/artifacts && \
13
- chown worker:worker /builds/worker/artifacts
13
+ chown worker:worker /builds/worker /builds/worker /artifacts
14
14
15
15
RUN pip install tox
16
16
Original file line number Diff line number Diff line change @@ -39,15 +39,15 @@ tasks:
39
39
balrog-backend :
40
40
description : " Push balrog backend docker image"
41
41
dependencies :
42
- image : build- docker-image-balrog-backend
42
+ image : docker-image-balrog-backend
43
43
worker :
44
44
env :
45
45
DOCKER_REPO : docker.io/mozilla/balrog
46
46
APP : backend
47
47
balrog-agent :
48
48
description : " Push balrogagent docker image"
49
49
dependencies :
50
- image : build- docker-image-balrog-agent
50
+ image : docker-image-balrog-agent
51
51
worker :
52
52
env :
53
53
DOCKER_REPO : docker.io/mozilla/balrogagent
Load Diff This file was deleted.
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments