Skip to content

Commit

Permalink
Increase disk space in container for doc builder (#504)
Browse files Browse the repository at this point in the history
The deploy_dev_docs action was failing due to running out of disk space
in the container. This was alleviated by running the 
`maximize-build-space` Github action.

[ committed by @ashao ]
[ reviewed by @ankona ]
  • Loading branch information
ashao authored Feb 27, 2024
1 parent 36e1f44 commit b44ef3a
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 4 deletions.
12 changes: 12 additions & 0 deletions .github/workflows/build_docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,18 @@ jobs:
runs-on: ubuntu-latest

steps:

# Maximize the space in this image
- name: Maximize build space
uses: easimon/maximize-build-space@v10
with:
root-reserve-mb: 30720
remove-dotnet: true
remove-android: true
remove-haskell: true
remove-codeql: true
remove-docker-images: true

- uses: actions/checkout@v4
with:
fetch-depth: 0 # otherwise, there would be errors pushing refs to the destination repository.
Expand Down
12 changes: 8 additions & 4 deletions doc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ Jump to :ref:`SmartRedis Changelog <sr_changelog>`
SmartSim
========


Development branch
------------------

Expand All @@ -20,14 +19,19 @@ To be released at some future point in time
Description

- Update Experiment API typing

- Fix publishing of development docs

Detailed Notes

- The container which builds the documentation for every merge to develop
was failing due to a lack of space within the container. This was fixed
by including an additional Github action that removes some unneeded
software and files that come from the default Github Ubuntu container.
(SmartSim-PR-PR504_)
- Update the generic `t.Any` typehints in Experiment API. (SmartSim-PR501_)


.. _SmartSim-PR493: https://github.com/CrayLabs/SmartSim/pull/493
.. _SmartSim-PR504: https://github.com/CrayLabs/SmartSim/pull/504
.. _SmartSim-PR501: https://github.com/CrayLabs/SmartSim/pull/501


0.6.2
Expand Down

0 comments on commit b44ef3a

Please sign in to comment.