diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 11d1fbb6f6..7387db5fc9 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -39,6 +39,11 @@ jobs: env: GCS_SA_KEY: ${{secrets.GCS_SA_KEY}} + - name: Debug jar build + run: | + locale + bazel build //backend/components/communication + - name: Install dependencies run: yarn install diff --git a/backend/components/communication/BUILD b/backend/components/communication/BUILD index 5f23b67437..a078eaafcb 100644 --- a/backend/components/communication/BUILD +++ b/backend/components/communication/BUILD @@ -29,7 +29,7 @@ app_deps = [ ] springboot( - name = "api-communication", + name = "communication", srcs = glob(["src/main/java/**/*.java"]), main_class = "co.airy.spring.core.AirySpringBootApplication", deps = app_deps, diff --git a/tools/build/springboot_pkg.sh b/tools/build/springboot_pkg.sh index 754463c134..1cabbc07bd 100755 --- a/tools/build/springboot_pkg.sh +++ b/tools/build/springboot_pkg.sh @@ -68,7 +68,7 @@ cd "$RULEDIR"/outputjar || exit ls -d **/* | sort > list.txt -# echo list.txt +cat list.txt jar -cfm0 ../"$OUTPUTJAR" ../"$MANIFEST" @list.txt