Skip to content

Commit

Permalink
[CHORE] Iceberg Image Caching (#1687)
Browse files Browse the repository at this point in the history
  • Loading branch information
samster25 authored Dec 1, 2023
1 parent 92f37cc commit 1c72e94
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -368,7 +368,6 @@ jobs:
cache-dependency-path: |
pyproject.toml
requirements-dev.txt
- name: Download built wheels
uses: actions/download-artifact@v3
with:
Expand All @@ -383,12 +382,13 @@ jobs:
pip install --upgrade pip
pip install -r requirements-dev.txt dist/${{ env.package-name }}-*x86_64*.whl --force-reinstall
rm -rf daft
- 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
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v5
with:
context: ./tests/integration/iceberg/docker-compose/
file: ./tests/integration/iceberg/docker-compose/Dockerfile
cache-from: type=gha
cache-to: type=gha,mode=min
- name: Spin up services
run: |
pushd ./tests/integration/iceberg/docker-compose/
Expand Down

0 comments on commit 1c72e94

Please sign in to comment.