Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions .github/workflows/python-client.yml
Original file line number Diff line number Diff line change
Expand Up @@ -72,15 +72,6 @@ jobs:
run: |
make client-unit-test

- name: Image build
env:
DEVELOCITY_ACCESS_KEY: ${{ secrets.DEVELOCITY_ACCESS_KEY }}
run: |
./gradlew \
:polaris-server:assemble \
:polaris-server:quarkusAppPartsBuild --rerun \
-Dquarkus.container-image.build=true

- name: Integration Tests
run: |
make client-integration-test
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,7 @@ client-unit-test: client-setup-env ## Run client unit tests
@echo "--- Client unit tests complete ---"

.PHONY: client-integration-test
client-integration-test: client-setup-env ## Run client integration tests
client-integration-test: build-server client-setup-env ## Run client integration tests
@echo "--- Starting client integration tests ---"
@echo "Ensuring Docker Compose services are stopped and removed..."
@$(DOCKER) compose -f $(PYTHON_CLIENT_DIR)/docker-compose.yml kill || true # `|| true` prevents make from failing if containers don't exist
Expand Down
1 change: 1 addition & 0 deletions runtime/server/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ tasks.named<QuarkusRun>("quarkusRun") {
"-Dpolaris.features.\"ALLOW_INSECURE_STORAGE_TYPES\"=true",
"-Dpolaris.features.\"SUPPORTED_CATALOG_STORAGE_TYPES\"=[\"FILE\",\"S3\",\"GCS\",\"AZURE\"]",
"-Dpolaris.readiness.ignore-severe-issues=true",
"-Dpolaris.features.\"DROP_WITH_PURGE_ENABLED\"=true",
)
}

Expand Down