Skip to content

Commit

Permalink
fix(uat): install iproute2 package for ip command; remove pipeline (#391
Browse files Browse the repository at this point in the history
)
  • Loading branch information
bgklika authored Aug 9, 2023
1 parent ab01d15 commit c23dffe
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions uat/codebuild/uat_linux_buildspec.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit c23dffe

Please sign in to comment.