Skip to content

Commit a83e8c3

Browse files
committed
Back merged from offical repo
2 parents 1e5e5e2 + 8bbf138 commit a83e8c3

62 files changed

Lines changed: 797 additions & 17 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,3 +33,14 @@ jobs:
3333
AWS_REGION: us-east-1
3434
run: |
3535
chmod 755 build-all.sh && ./build-all.sh $MODULE
36+
37+
- name: "Zip build reports"
38+
if: failure()
39+
run: zip -r reports.zip **/**/build/reports
40+
41+
- uses: actions/upload-artifact@v1
42+
name: "Upload build reports"
43+
if: failure()
44+
with:
45+
name: reports
46+
path: reports.zip

aws/aws-hello-world/README.md

Lines changed: 14 additions & 0 deletions

aws/aws-rds-hello-world/README.md

Lines changed: 15 additions & 0 deletions

aws/cloudformation/ecs-in-two-public-subnets/README.md

Lines changed: 7 additions & 2 deletions

aws/cloudformation/ecs-zero-downtime-deployment/README.md

Lines changed: 9 additions & 2 deletions

aws/localstack/README.md

Lines changed: 10 additions & 0 deletions

build-all.sh

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -87,11 +87,12 @@ then
8787
# ADD NEW MODULES HERE
8888
# (add new modules above the rest so you get quicker feedback if it fails)
8989

90+
build_gradle_module "spring-boot/cache"
91+
build_gradle_module "spring-boot/bean-lifecycle"
9092
build_gradle_module "spring-boot/request-response/client"
9193
build_gradle_module "spring-boot/request-response/server"
9294
build_gradle_module "spring-boot/hazelcast/hazelcast-embedded-cache"
9395
build_gradle_module "spring-boot/hazelcast/hazelcast-client-server"
94-
build_gradle_module "spring-boot/cache"
9596

9697
echo ""
9798
echo "+++"
@@ -122,12 +123,12 @@ fi
122123

123124
if [[ "$MODULE" == "module2" ]]
124125
then
126+
build_gradle_module "solid/isp"
127+
build_maven_module "solid/lsp"
125128
build_maven_module "resilience4j/retry"
126129
build_maven_module "resilience4j/ratelimiter"
127130
build_maven_module "resilience4j/timelimiter"
128-
build_maven_module "solid/lsp"
129131
build_gradle_module "spring-data/spring-data-jdbc-converter"
130-
build_gradle_module "solid"
131132
build_gradle_module "reactive"
132133
build_gradle_module "junit/assumptions"
133134
build_gradle_module "logging"

junit/assumptions/README.md

Lines changed: 6 additions & 2 deletions

reactive/README.md

Lines changed: 7 additions & 0 deletions

resilience4j/ratelimiter/README.md

Lines changed: 10 additions & 0 deletions

0 commit comments

Comments
 (0)