diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 839c17a..a2145bf 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -33,3 +33,14 @@ jobs: AWS_REGION: us-east-1 run: | chmod 755 build-all.sh && ./build-all.sh $MODULE + + - name: "Zip build reports" + if: failure() + run: zip -r reports.zip **/build/reports + + - uses: actions/upload-artifact@v1 + name: "Upload build reports" + if: failure() + with: + name: reports + path: reports.zip diff --git a/build-all.sh b/build-all.sh index d043512..12aa0a1 100755 --- a/build-all.sh +++ b/build-all.sh @@ -87,12 +87,12 @@ then # ADD NEW MODULES HERE # (add new modules above the rest so you get quicker feedback if it fails) + build_gradle_module "spring-boot/cache" build_gradle_module "spring-boot/bean-lifecycle" build_gradle_module "spring-boot/request-response/client" build_gradle_module "spring-boot/request-response/server" build_gradle_module "spring-boot/hazelcast/hazelcast-embedded-cache" build_gradle_module "spring-boot/hazelcast/hazelcast-client-server" - build_gradle_module "spring-boot/cache" echo "" echo "+++"