From fccecfb0199cf2aea9af5b802b6d757e3653abbf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Pr=C3=B6schel?= Date: Wed, 19 Oct 2022 11:20:42 +0200 Subject: [PATCH 1/3] test fix --- backend/components/communication/BUILD | 2 +- tools/build/springboot_pkg.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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..9c08e581e2 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 +echo list.txt jar -cfm0 ../"$OUTPUTJAR" ../"$MANIFEST" @list.txt From f9b0e36e4712deeb7f0d9304fe07dcc5d318efa4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Pr=C3=B6schel?= Date: Wed, 19 Oct 2022 11:34:41 +0200 Subject: [PATCH 2/3] add debug workflow --- .github/workflows/main.yml | 5 +++++ 1 file changed, 5 insertions(+) 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 From 8e3514367205b514a6cdd627dddda4a4c6864b93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christoph=20Pr=C3=B6schel?= Date: Wed, 19 Oct 2022 13:37:21 +0200 Subject: [PATCH 3/3] cat list --- tools/build/springboot_pkg.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/build/springboot_pkg.sh b/tools/build/springboot_pkg.sh index 9c08e581e2..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