Skip to content

Commit

Permalink
Fix disk space issue about Github Autobuild
Browse files Browse the repository at this point in the history
Try to make use of another volume which has some free space
  • Loading branch information
abitmore committed May 22, 2020
1 parent 7d617a7 commit 575c47d
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,13 @@ jobs:
submodules: recursive
- name: Configure
run: |
pwd
df -h .
mkdir -p _build
sudo mkdir -p /mnt/libraries /mnt/tests
sudo chmod a+rwx /mnt/libraries /mnt/tests
ln -s /mnt/libraries _build/libraries
ln -s /mnt/tests _build/tests
sudo mkdir -p /_build/libraries
sudo chmod a+rwx /_build/libraries
ln -s /_build/libraries _build/libraries
ls -al _build
pushd _build
export -n BOOST_ROOT BOOST_INCLUDEDIR BOOST_LIBRARYDIR
cmake -D CMAKE_BUILD_TYPE=Debug \
Expand Down

0 comments on commit 575c47d

Please sign in to comment.