Skip to content

Commit 3d7839c

Browse files
committed
add dummy AWS credentials
1 parent 72411d1 commit 3d7839c

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@ jobs:
2828
MODULE: ${{ matrix.module }}
2929
# We don't actually need AWS credentials in the tests, but LocalStack
3030
# complains if they're not there, so we add dummies to the environment.
31-
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
32-
AWS_SECRET_KEY: ${{ secrets.AWS_SECRET_KEY }}
33-
AWS_REGION: ${{ secrets.AWSREGION }}
31+
AWS_ACCESS_KEY_ID: dummy
32+
AWS_SECRET_KEY: dummy
33+
AWS_REGION: us-east-1
3434
run: |
3535
chmod 755 build-all.sh && ./build-all.sh $MODULE

build-all.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,6 +121,7 @@ fi
121121

122122
if [[ "$MODULE" == "module3" ]]
123123
then
124+
build_maven_module "aws/localstack"
124125
build_gradle_module "pact/pact-spring-provider"
125126
build_gradle_module "patterns"
126127
build_gradle_module "spring-cloud/feign-with-spring-data-rest"
@@ -131,7 +132,6 @@ then
131132
build_gradle_module "spring-data/spring-data-rest-associations"
132133
build_gradle_module "spring-data/spring-data-rest-springfox"
133134
build_gradle_module "tools/jacoco"
134-
build_maven_module "aws/localstack"
135135

136136
echo ""
137137
echo "+++"

0 commit comments

Comments
 (0)