Skip to content

Commit

Permalink
chore(build): add e2e to ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jeqo committed Aug 10, 2023
1 parent 7e21610 commit a6962e9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/main_push_and_pull_request_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,4 +24,8 @@ jobs:
java-version: ${{ matrix.java-version }}
distribution: temurin
- name: Build with Gradle
run: ./gradlew build distTar
run: ./gradlew build distTar -x e2e:test
- name: Build docker image
run: make docker_image
- name: Run E2E tests
run: ./gradlew e2e:test
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ clean:
./gradlew clean

build/distributions/tiered-storage-for-apache-kafka-$(VERSION).tgz:
./gradlew build distTar
./gradlew build distTar -x e2e:test

.PHONY: docker_image
docker_image: build/distributions/tiered-storage-for-apache-kafka-$(VERSION).tgz
Expand Down

0 comments on commit a6962e9

Please sign in to comment.