File tree 2 files changed +15
-1
lines changed
2 files changed +15
-1
lines changed Original file line number Diff line number Diff line change 9
9
runs-on : ubuntu-latest
10
10
11
11
steps :
12
+ # Free disk space
13
+ # Inspiration
14
+ # - https://github.com/easimon/maximize-build-space/blob/master/action.yml
15
+ # - https://githubmemory.com/repo/ros-industrial/industrial_ci/issues/648
16
+ # - https://github.community/t/bigger-github-hosted-runners-disk-space/17267/11
17
+ - name : Maximize build space
18
+ run : |
19
+ sudo apt-get -qq purge build-essential ghc*
20
+ sudo apt-get clean
21
+ sudo rm -rf /usr/share/dotnet
22
+ sudo rm -rf /usr/local/lib/android
23
+ sudo rm -rf /opt/ghc
24
+ docker system prune -f
25
+
12
26
- name : Checkout repository
13
27
14
28
Original file line number Diff line number Diff line change 1
- FROM ghcr.io/biosimulators/biosimulators:0.0.6
1
+ FROM ghcr.io/biosimulators/biosimulators:0.0.8
2
2
3
3
LABEL \
4
4
org.opencontainers.image.title="BioSimulators Jupyter server" \
You can’t perform that action at this time.
0 commit comments