From c23dffeba74c0f24932e6c020388356b18a183d1 Mon Sep 17 00:00:00 2001 From: Vitaly Kh <82949155+bgklika@users.noreply.github.com> Date: Wed, 9 Aug 2023 18:26:08 +0200 Subject: [PATCH] fix(uat): install iproute2 package for ip command; remove pipeline (#391) --- uat/codebuild/uat_linux_buildspec.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/uat/codebuild/uat_linux_buildspec.yaml b/uat/codebuild/uat_linux_buildspec.yaml index b28d25262..4d464b86e 100644 --- a/uat/codebuild/uat_linux_buildspec.yaml +++ b/uat/codebuild/uat_linux_buildspec.yaml @@ -11,16 +11,18 @@ phases: install: runtime-versions: java: corretto11 + commands: + - apt-get update + - apt-get -y install iproute2 build: commands: - curl -s https://d2s8p88vqu9w66.cloudfront.net/releases/greengrass-nucleus-latest.zip > /tmp/greengrass-nucleus-latest.zip - mvn -DskipTests=false -U -ntp clean verify -f uat/pom.xml - - java -Dggc.archive=/tmp/greengrass-nucleus-latest.zip -Dtags="$CUCUMBER_TAGS" -jar uat/testing-features/target/client-devices-auth-testing-features.jar 2>&1 | tee build.log + - java -Dggc.archive=/tmp/greengrass-nucleus-latest.zip -Dtags="$CUCUMBER_TAGS" -jar uat/testing-features/target/client-devices-auth-testing-features.jar artifacts: files: - 'testResults/**/*' - - 'build.log' name: 'AuthUatLinuxLogs.zip' reports: