Skip to content

Commit

Permalink
img size
Browse files Browse the repository at this point in the history
Signed-off-by: Tommy Hughes <tohughes@redhat.com>
  • Loading branch information
tchughesiv committed Mar 3, 2025
1 parent 8b5146d commit fb6945d
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 5 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/operator-e2e-integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,26 @@ jobs:
KIND_CLUSTER: "operator-e2e-cluster"

steps:
- name: Build
run: |
echo "Free space:"
df -h
- name: Maximize build space
uses: easimon/maximize-build-space@master
with:
root-reserve-mb: 512
swap-size-mb: 1024
remove-dotnet: 'true'

- name: Checkout code
uses: actions/checkout@v4

- name: Build
run: |
echo "Free space:"
df -h
- name: Set up Go
uses: actions/setup-go@v5
with:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,15 +25,10 @@ RUN yalc add @feast-dev/feast-ui && \
npm cache clean --force && \
yarn cache clean --all

RUN du -sh ${APP_ROOT}/lib

WORKDIR ${APP_ROOT}/src
RUN pip install --no-cache-dir pip-tools && \
make install-python-ci-dependencies && \
pip uninstall -y pip-tools

# modify permissions to support running with a random uid
RUN chmod g+w $(python -c "import feast.ui as ui; print(ui.__path__)" | tr -d "[']")/build/projects-list.json

RUN du -sh ${APP_ROOT}/lib
RUN du -sh ${APP_ROOT}/lib/python3.11/site-packages/*

0 comments on commit fb6945d

Please sign in to comment.