File tree 4 files changed +23
-0
lines changed
4 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ permissions:
10
10
11
11
env :
12
12
CONTROLLER : ${{ github.event.repository.name }}
13
+ LIBCRYTO_VERSION : " 3.1.3-r0"
13
14
14
15
jobs :
15
16
test :
72
73
builder : ${{ steps.buildx.outputs.name }}
73
74
context : .
74
75
file : ./Dockerfile
76
+ build-args : |
77
+ LIBCRYTO_VERSION=${{ env.LIBCRYTO_VERSION }}
75
78
platforms : linux/amd64,linux/arm64 # ,linux/arm/v7
76
79
tags : |
77
80
ghcr.io/weaveworks/${{ env.CONTROLLER }}:${{ steps.prep.outputs.VERSION }}
89
92
builder : ${{ steps.buildx.outputs.name }}
90
93
context : .
91
94
file : ./runner-base.Dockerfile
95
+ build-args : |
96
+ LIBCRYTO_VERSION=${{ env.LIBCRYTO_VERSION }}
92
97
platforms : linux/amd64,linux/arm64 # ,linux/arm/v7
93
98
tags : |
94
99
ghcr.io/weaveworks/tf-runner:${{ steps.prep.outputs.VERSION }}-base
@@ -126,6 +131,8 @@ jobs:
126
131
context : .
127
132
file : ./planner.Dockerfile
128
133
platforms : linux/amd64,linux/arm64 # ,linux/arm/v7
134
+ build-args : |
135
+ LIBCRYTO_VERSION=${{ env.LIBCRYTO_VERSION }}
129
136
tags : |
130
137
ghcr.io/weaveworks/branch-planner:${{ steps.prep.outputs.VERSION }}
131
138
labels : |
Original file line number Diff line number Diff line change @@ -18,6 +18,7 @@ permissions:
18
18
env :
19
19
VERSION : ${{ github.event.inputs.version }}
20
20
BUILD_DATE : ${{ github.event.inputs.build_date }}
21
+ LIBCRYTO_VERSION : " 3.1.3-r0"
21
22
22
23
jobs :
23
24
release-base :
52
53
builder : ${{ steps.buildx.outputs.name }}
53
54
context : .
54
55
file : ./runner-base.Dockerfile
56
+ build-args : |
57
+ LIBCRYTO_VERSION=${{ env.LIBCRYTO_VERSION }}
55
58
platforms : linux/amd64,linux/arm64 # ,linux/arm/v7
56
59
tags : |
57
60
ghcr.io/weaveworks/tf-runner:${{ env.VERSION }}-base
@@ -103,6 +106,7 @@ jobs:
103
106
build-args : |
104
107
BASE_IMAGE=ghcr.io/weaveworks/tf-runner:${{ env.VERSION }}-base
105
108
TF_VERSION=${{ matrix.tf_version }}
109
+ LIBCRYTO_VERSION=${{ env.LIBCRYTO_VERSION }}
106
110
tags : |
107
111
ghcr.io/weaveworks/tf-runner:${{ env.VERSION }}-tf-${{ matrix.tf_version }}
108
112
labels : |
Original file line number Diff line number Diff line change 12
12
13
13
permissions :
14
14
contents : read # for actions/checkout to fetch code
15
+ LIBCRYTO_VERSION : " 3.1.3-r0"
15
16
16
17
env :
17
18
CONTROLLER : ${{ github.event.repository.name }}
68
69
builder : ${{ steps.buildx.outputs.name }}
69
70
context : .
70
71
file : ./Dockerfile
72
+ build-args : |
73
+ LIBCRYTO_VERSION=${{ env.LIBCRYTO_VERSION }}
71
74
platforms : linux/amd64,linux/arm64 # ,linux/arm/v7
72
75
tags : |
73
76
ghcr.io/weaveworks/${{ env.CONTROLLER }}:${{ steps.prep.outputs.VERSION }}
86
89
builder : ${{ steps.buildx.outputs.name }}
87
90
context : .
88
91
file : ./runner-base.Dockerfile
92
+ build-args : |
93
+ LIBCRYTO_VERSION=${{ env.LIBCRYTO_VERSION }}
89
94
platforms : linux/amd64,linux/arm64 # ,linux/arm/v7
90
95
tags : |
91
96
ghcr.io/weaveworks/tf-runner:${{ steps.prep.outputs.VERSION }}-base
@@ -146,6 +151,8 @@ jobs:
146
151
builder : ${{ steps.buildx.outputs.name }}
147
152
context : .
148
153
file : ./planner.Dockerfile
154
+ build-args : |
155
+ LIBCRYTO_VERSION=${{ env.LIBCRYTO_VERSION }}
149
156
platforms : linux/amd64,linux/arm64 # ,linux/arm/v7 - azure-cli does not install correctly on 32 bit arm
150
157
tags : |
151
158
ghcr.io/weaveworks/branch-planner:${{ steps.prep.outputs.VERSION }}
Original file line number Diff line number Diff line change @@ -7,6 +7,11 @@ BRANCH_PLANNER_IMAGE ?= ghcr.io/weaveworks/branch-planner
7
7
TAG ?= latest
8
8
BUILD_SHA ?= $(shell git rev-parse --short HEAD)
9
9
BUILD_VERSION ?= $(shell git describe --tags $$(git rev-list --tags --max-count=1 ) )
10
+
11
+ # Update the following files too:
12
+ # - .github/workflows/build-and-publish.yaml
13
+ # - .github/workflows/release-runners.yaml
14
+ # - .github/workflows/release.yaml
10
15
LIBCRYTO_VERSION ?= 3.1.3-r0
11
16
12
17
# source controller version
You can’t perform that action at this time.
0 commit comments