File tree Expand file tree Collapse file tree 6 files changed +53
-0
lines changed Expand file tree Collapse file tree 6 files changed +53
-0
lines changed Original file line number Diff line number Diff line change 2323 - name : Checkout branch
2424 uses : actions/checkout@v3
2525
26+ - name : Free up space on GitHub image
27+ run : |
28+ # Based on the official advice:
29+ # https://github.com/actions/virtual-environments/issues/2840#issuecomment-790492173
30+ sudo rm -rf /usr/share/dotnet
31+ sudo rm -rf /opt/ghc
32+ sudo rm -rf "/usr/local/share/boost"
33+ sudo rm -rf "$AGENT_TOOLSDIRECTORY"
34+
2635 - name : Setup Node with v16.13.0
2736 uses : actions/setup-node@v3
2837 with :
Original file line number Diff line number Diff line change 1818 - name : Checkout branch
1919 uses : actions/checkout@v3
2020
21+ - name : Free up space on GitHub image
22+ run : |
23+ # Based on the official advice:
24+ # https://github.com/actions/virtual-environments/issues/2840#issuecomment-790492173
25+ sudo rm -rf /usr/share/dotnet
26+ sudo rm -rf /opt/ghc
27+ sudo rm -rf "/usr/local/share/boost"
28+ sudo rm -rf "$AGENT_TOOLSDIRECTORY"
29+
2130 - name : Setup Node with v${{ matrix.node-version }}
2231 uses : actions/setup-node@v3
2332 with :
Original file line number Diff line number Diff line change 1313 - uses : actions/checkout@v3
1414 name : Checkout
1515
16+ - name : Free up space on GitHub image
17+ run : |
18+ # Based on the official advice:
19+ # https://github.com/actions/virtual-environments/issues/2840#issuecomment-790492173
20+ sudo rm -rf /usr/share/dotnet
21+ sudo rm -rf /opt/ghc
22+ sudo rm -rf "/usr/local/share/boost"
23+ sudo rm -rf "$AGENT_TOOLSDIRECTORY"
24+
1625 - uses : actions/setup-node@v3
1726 name : Use Node.js 16.x
1827 with :
Original file line number Diff line number Diff line change 1515 - name : Checkout Repo
1616 uses : actions/checkout@v3
1717
18+ - name : Free up space on GitHub image
19+ run : |
20+ # Based on the official advice:
21+ # https://github.com/actions/virtual-environments/issues/2840#issuecomment-790492173
22+ sudo rm -rf /usr/share/dotnet
23+ sudo rm -rf /opt/ghc
24+ sudo rm -rf "/usr/local/share/boost"
25+ sudo rm -rf "$AGENT_TOOLSDIRECTORY"
26+
1827 - name : Setup Node.js
1928 uses : actions/setup-node@v3
2029 with :
Original file line number Diff line number Diff line change 1313 CI_JOB_NUMBER : 1
1414 steps :
1515 - uses : actions/checkout@v3
16+ - name : Free up space on GitHub image
17+ run : |
18+ # Based on the official advice:
19+ # https://github.com/actions/virtual-environments/issues/2840#issuecomment-790492173
20+ sudo rm -rf /usr/share/dotnet
21+ sudo rm -rf /opt/ghc
22+ sudo rm -rf "/usr/local/share/boost"
23+ sudo rm -rf "$AGENT_TOOLSDIRECTORY"
1624 - uses : actions/setup-node@v3
1725 with :
1826 node-version : 16
Original file line number Diff line number Diff line change 7777 git checkout origin/main -- .changeset
7878 fi
7979
80+ - name : Free up space on GitHub image
81+ run : |
82+ # Based on the official advice:
83+ # https://github.com/actions/virtual-environments/issues/2840#issuecomment-790492173
84+ sudo rm -rf /usr/share/dotnet
85+ sudo rm -rf /opt/ghc
86+ sudo rm -rf "/usr/local/share/boost"
87+ sudo rm -rf "$AGENT_TOOLSDIRECTORY"
88+
8089 - name : Setup Node.js
8190 uses : actions/setup-node@v3
8291 with :
You can’t perform that action at this time.
0 commit comments