Skip to content

Commit b00ea39

Browse files
test: fix Docker mxbuild for ARM arch and skip the atlas theme copy
1 parent dfd8658 commit b00ea39

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

automation/run-e2e/docker/mxbuild.Dockerfile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,12 @@ echo "Downloading mxbuild ${MENDIX_VERSION} and docker building for ${BUILDPLATF
2424
&& tar xfz /tmp/mxbuild.tar.gz --directory /tmp/mxbuild \
2525
&& rm /tmp/mxbuild.tar.gz && \
2626
\
27-
apt-get update -qqy && \
28-
apt-get install -qqy libicu70 && \
27+
rm -rf /var/lib/apt/lists/* && \
28+
apt-get update --allow-insecure-repositories -qqy && \
29+
apt-get install -qqy --allow-unauthenticated libicu70 && \
2930
apt-get -qqy remove --auto-remove wget && \
3031
apt-get clean && \
32+
rm -rf /var/lib/apt/lists/* && \
3133
\
3234
echo "#!/bin/bash -x" >/bin/mxbuild && \
3335
echo "/tmp/mxbuild/modeler/mxbuild --java-home=/opt/java/openjdk --java-exe-path=/opt/java/openjdk/bin/java \$@" >>/bin/mxbuild && \

packages/pluggableWidgets/skiplink-web/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
"create-gh-release": "rui-create-gh-release",
3232
"create-translation": "rui-create-translation",
3333
"dev": "pluggable-widgets-tools start:web",
34-
"e2e": "MENDIX_VERSION=11.1.0.75979 run-e2e ci",
34+
"e2e": "MENDIX_VERSION=11.1.0.75979 run-e2e ci --no-update-project",
3535
"e2edev": "run-e2e dev --with-preps",
3636
"format": "prettier --ignore-path ./node_modules/@mendix/prettier-config-web-widgets/global-prettierignore --write .",
3737
"lint": "eslint src/ package.json",

0 commit comments

Comments
 (0)