Skip to content
Open
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Dockerfile_mbtci_template
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ RUN ARCH= && dpkgArch="$(dpkg --print-architecture)" \

# Install Grunt CLI
RUN set -ex \
&& npm install --prefix /usr/local/ -g grunt-cli \
&& npm install -g grunt-cli \
&& npm cache clean -g --force \
# smoke test
&& echo "grunt-cli install smoke test!" \
Expand All @@ -108,7 +108,7 @@ RUN set -ex \
&& npm install --prefix /usr/local/ -g @ui5/cli@${UI5_VERSION} \
&& npm cache clean -g --force \
# smoke test
&& echo "ui5 install smoke test!" \
&& echo "@ui5/cli install smoke test!" \
&& ui5 --version

# Install Golang
Expand Down
2 changes: 1 addition & 1 deletion scripts/common_image
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ then
exit -1
fi

# set jvm and node version and print
# set java and node version and print
export JAVA_VERSION="-java${JAVA_MAJOR_VERSION}"
export NODE_VERSION="-node${NODE_MAJOR_VERSION}"
echo "Java version: ${JAVA_VERSION}, Node version: ${NODE_VERSION}"
8 changes: 5 additions & 3 deletions test/goss/goss_template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ package:
installed: false
git:
installed: true
build-essential:
installed: true
python2.7:
installed: true
python3:
Expand Down Expand Up @@ -39,13 +41,13 @@ command:
exit-status: 0
stdout:
- vNODE_VERSION_TEMPLATE
# verify installed UI5
# verify installed UI5 version
ui5 --version:
exit-status: 0
# verify installed grunt
# verify installed grunt version
grunt --version:
exit-status: 0
# verify installed go
# verify installed go version
go version:
exit-status:0
# verify NPM @sap-scope registry NOT configured
Expand Down