Skip to content

Commit

Permalink
fix: compile pom.xml before building (#100)
Browse files Browse the repository at this point in the history
Signed-off-by: a3hadi <[email protected]>
  • Loading branch information
ayildirim21 authored Mar 22, 2024
1 parent f329e10 commit c838333
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .github/workflows/build-push.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,11 @@ jobs:
steps:
- name: Check out repository
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v3
with:
java-version: '11'
distribution: 'temurin'
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
name: Numaflow Java CI

on:
push:
branches: [ main ]
pull_request:
branches: [ main ]

Expand Down
2 changes: 1 addition & 1 deletion update_examples.sh
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ elif (( usingBuildPushExample )); then
exit 1
fi
cd examples || exit
if ! mvn jib:dockerBuild@"$executionID" -Ddocker.tag="$tag"; then
if ! mvn clean install jib:dockerBuild@"$executionID" -Ddocker.tag="$tag"; then
echo "Error: failed to build example image $executionID" >&2
exit 1
fi
Expand Down

0 comments on commit c838333

Please sign in to comment.