File tree Expand file tree Collapse file tree 4 files changed +108
-47
lines changed Expand file tree Collapse file tree 4 files changed +108
-47
lines changed Original file line number Diff line number Diff line change 36
36
quayUsername : ${{ secrets.LOCALAI_REGISTRY_USERNAME }}
37
37
quayPassword : ${{ secrets.LOCALAI_REGISTRY_PASSWORD }}
38
38
strategy :
39
- max-parallel : 2
40
39
matrix :
41
40
include :
42
41
- build-type : ' hipblas'
76
75
quayUsername : ${{ secrets.LOCALAI_REGISTRY_USERNAME }}
77
76
quayPassword : ${{ secrets.LOCALAI_REGISTRY_PASSWORD }}
78
77
strategy :
79
- max-parallel : ${{ github.event_name != 'pull_request' && 2 || 4 }}
78
+ # max-parallel: ${{ github.event_name != 'pull_request' && 2 || 4 }}
80
79
matrix :
81
80
include :
82
81
- build-type : ' '
Original file line number Diff line number Diff line change 81
81
reusable_image-build :
82
82
runs-on : ${{ inputs.runs-on }}
83
83
steps :
84
+
85
+ - name : Free Disk Space (Ubuntu)
86
+ if : inputs.runs-on == 'ubuntu-latest'
87
+ uses : jlumbroso/free-disk-space@main
88
+ with :
89
+ # this might remove tools that are actually needed,
90
+ # if set to "true" but frees about 6 GB
91
+ tool-cache : false
92
+ # all of these default to true, but feel free to set to
93
+ # "false" if necessary for your workflow
94
+ android : true
95
+ dotnet : true
96
+ haskell : true
97
+ large-packages : true
98
+ docker-images : true
99
+ swap-storage : true
84
100
- name : Force Install GIT latest
85
101
run : |
86
102
sudo apt-get update \
@@ -102,8 +118,8 @@ jobs:
102
118
df -h
103
119
echo
104
120
sudo apt-get remove -y '^llvm-.*|^libllvm.*' || true
105
- sudo apt-get remove --auto-remove android-sdk-platform-tools || true
106
- sudo apt-get purge --auto-remove android-sdk-platform-tools || true
121
+ sudo apt-get remove --auto-remove android-sdk-platform-tools snapd || true
122
+ sudo apt-get purge --auto-remove android-sdk-platform-tools snapd || true
107
123
sudo rm -rf /usr/local/lib/android
108
124
sudo apt-get remove -y '^dotnet-.*|^aspnetcore-.*' || true
109
125
sudo rm -rf /usr/share/dotnet
You can’t perform that action at this time.
0 commit comments