File tree 1 file changed +6
-7
lines changed
1 file changed +6
-7
lines changed Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ jobs:
105
105
build_llama :
106
106
name : Build llama.cpp Image
107
107
runs-on : ubuntu-latest
108
- needs : validate
108
+ needs : [ validate, build_llama_base]
109
109
110
110
services :
111
111
docker :
@@ -135,28 +135,27 @@ jobs:
135
135
name : Build whisper.cpp Image
136
136
runs-on : ubuntu-latest
137
137
needs : validate
138
-
138
+
139
139
services :
140
140
docker :
141
141
image : docker:20.10.16
142
142
options : --privileged
143
-
143
+
144
144
env :
145
145
IMAGE : whisper.cpp
146
146
CI_REGISTRY_PATH : index.docker.io/ahoylabs
147
147
CI_REGISTRY_USER : ${{ secrets.CI_REGISTRY_USER }}
148
148
CI_REGISTRY_PASSWORD : ${{ secrets.CI_REGISTRY_PASSWORD }}
149
-
149
+
150
150
steps :
151
151
- name : Check out repository
152
152
uses : actions/checkout@v4
153
-
153
+
154
154
- name : Log in to Docker Hub
155
155
run : docker login -u "${{ secrets.CI_REGISTRY_USER }}" -p "${{ secrets.CI_REGISTRY_PASSWORD }}"
156
-
156
+
157
157
- name : Build whisper.cpp Docker image
158
158
run : |
159
159
cd $IMAGE
160
160
docker build --pull -t "${{ env.CI_REGISTRY_PATH }}/${{ env.IMAGE }}" .
161
161
docker push "${{ env.CI_REGISTRY_PATH }}/${{ env.IMAGE }}"
162
-
You can’t perform that action at this time.
0 commit comments