Skip to content

Commit 056791b

Browse files
committed
fix2 indexer build pipelines
1 parent 5d111d9 commit 056791b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/app-ci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
run: |
5656
echo "Testing indexer project."
5757
cd ./app/indexer
58-
./mvnw test
58+
mvn test
5959
6060
- name: Build Spring Boot App
6161
run: |

.github/workflows/nightly-jobs.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -95,10 +95,10 @@ jobs:
9595
run: |
9696
echo "Testing indexer project."
9797
cd ./app/indexer
98-
./mvnw test
98+
mvn test
9999
100100
- name: Build Spring Boot App
101101
run: |
102102
echo "Building Spring Boot app."
103103
cd ./app/backend
104-
./mvnw verify
104+
mvn verify

0 commit comments

Comments
 (0)