Skip to content

Commit

Permalink
Tried to solve out of space issue on github actions for ubuntu
Browse files Browse the repository at this point in the history
  • Loading branch information
smistad committed Aug 8, 2023
1 parent 3bd4b71 commit 3d65644
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/CI-ubuntu.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:

steps:
- uses: actions/checkout@v2

- name: Install dependencies
run: |
apt update && apt install -y sudo
Expand Down Expand Up @@ -77,9 +77,14 @@ jobs:
-DFAST_BUILD_EXAMPLES=ON
- name: Build
# Build your program with the given configuration
run: cmake --build build --config ${{env.BUILD_TYPE}} -j 4

- name: Free some space
run: |
df -h
rm -Rf ${{github.workspace}}/build/external/tensorflow/src/tensorflow/
df -h
- name: Build Python wheel
run: |
cmake --build build --config ${{env.BUILD_TYPE}} --target python-wheel -j 4
Expand Down

0 comments on commit 3d65644

Please sign in to comment.