-
Notifications
You must be signed in to change notification settings - Fork 174
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[CHORE] Bump Iceberg Version and V1 of caching (#1685)
- Loading branch information
Showing
2 changed files
with
14 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -383,12 +383,18 @@ jobs: | |
pip install --upgrade pip | ||
pip install -r requirements-dev.txt dist/${{ env.package-name }}-*x86_64*.whl --force-reinstall | ||
rm -rf daft | ||
- name: Spin up Iceberg services | ||
uses: isbang/[email protected] | ||
with: | ||
compose-file: ./tests/integration/iceberg/docker-compose/docker-compose.yml | ||
down-flags: --volumes | ||
- name: Run IO integration tests | ||
- name: Build images | ||
run: | | ||
docker buildx create --use --driver=docker-container | ||
pushd ./tests/integration/iceberg/docker-compose/ | ||
docker buildx bake -f ./docker-compose.yml --set *.cache-to="type=gha,mode=min" --set *.cache-from="type=gha" --load | ||
popd | ||
- name: Spin up services | ||
run: | | ||
pushd ./tests/integration/iceberg/docker-compose/ | ||
docker-compose -f ./docker-compose.yml up -d | ||
popd | ||
- name: Run Iceberg integration tests | ||
run: | | ||
pytest tests/integration/iceberg -m 'integration' --durations=50 | ||
env: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters