Skip to content
This repository was archived by the owner on Jun 22, 2024. It is now read-only.

Commit 9f8663f

Browse files
committed
CI chart tests against amd64 only
Signed-off-by: Viet Nguyen Duc <[email protected]>
1 parent de6f9da commit 9f8663f

File tree

3 files changed

+6
-7
lines changed

3 files changed

+6
-7
lines changed

.github/workflows/helm-chart-test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ jobs:
5353
- name: Setup Kubernetes environment
5454
run: make chart_setup_env
5555
- name: Build Docker images
56-
run: NAME=${IMAGE_REGISTRY} VERSION=${BRANCH} BUILD_DATE=${BUILD_DATE} make build_multi
56+
run: BUILD_ARGS="--build-arg TARGETARCH=amd64" NAME=${IMAGE_REGISTRY} VERSION=${BRANCH} BUILD_DATE=${BUILD_DATE} make build
5757
- name: Build and lint charts
5858
run: |
5959
BUILD_DATE=${BUILD_DATE} make chart_build

Base/Dockerfile

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -135,12 +135,11 @@ RUN mkdir -p /opt/selenium /opt/selenium/assets /var/run/supervisor /var/log/sup
135135
# so that the container can skip downloading them everytime it comes up
136136
#=====
137137
#RUN curl -fLo /tmp/cs https://github.com/coursier/launchers/raw/master/coursier \
138-
# RUN if [ `arch` = "aarch64" ] || [ `arch` = "x86_64" ]; then \
139-
RUN if [ `arch` = "aarch64" ]; then \
138+
RUN if [ `arch` = "aarch64" ] || [ `arch` = "x86_64" ]; then \
140139
curl -fL https://github.com/coursier/launchers/raw/master/cs-`arch`-pc-linux.gz | gzip -d > /tmp/cs \
141-
&& chmod +x /tmp/cs \
142-
&& mkdir -p /external_jars \
143-
&& chmod -R 775 /external_jars ; \
140+
&& chmod +x /tmp/cs \
141+
&& mkdir -p /external_jars \
142+
&& chmod -R 775 /external_jars ; \
144143
fi
145144

146145
RUN if [ -f "/tmp/cs" ]; then \

NodeFirefox/Dockerfile.multi-arch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ LABEL authors=${AUTHORS}
77
ARG TARGETARCH
88
ARG TARGETVARIANT
99

10-
ARG GECKODRIVER_VERSION=0.33.0
10+
ARG GECKODRIVER_VERSION=0.34.0
1111

1212
USER root
1313

0 commit comments

Comments
 (0)