Skip to content

Commit 8666e76

Browse files
committed
ci: use quay for test images
Signed-off-by: Ettore Di Giacinto <[email protected]>
1 parent 5e83023 commit 8666e76

File tree

2 files changed

+10
-6
lines changed

2 files changed

+10
-6
lines changed

.github/workflows/image_build.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -155,7 +155,7 @@ jobs:
155155
uses: docker/metadata-action@v5
156156
with:
157157
images: |
158-
ttl.sh/localai-ci-pr-${{ github.event.number }}
158+
quay.io/go-skynet/ci-tests:localai-ci-pr-${{ github.event.number }}
159159
tags: |
160160
type=ref,event=branch
161161
type=semver,pattern={{raw}}
@@ -207,7 +207,7 @@ jobs:
207207
password: ${{ secrets.dockerPassword }}
208208

209209
- name: Login to DockerHub
210-
if: github.event_name != 'pull_request'
210+
# if: github.event_name != 'pull_request'
211211
uses: docker/login-action@v3
212212
with:
213213
registry: quay.io
@@ -272,7 +272,7 @@ jobs:
272272
- name: Testing image
273273
if: github.event_name == 'pull_request'
274274
run: |
275-
echo "Image is available at ttl.sh/localai-ci-pr-${{ github.event.number }}:${{ steps.meta_pull_request.outputs.version }}" >> $GITHUB_STEP_SUMMARY
275+
echo "Image is available at quay.io/go-skynet/ci-tests:localai-ci-pr-${{ github.event.number }}:${{ steps.meta_pull_request.outputs.version }}" >> $GITHUB_STEP_SUMMARY
276276
## End testing image
277277
- name: Build and push AIO image
278278
if: inputs.aio != ''

.github/workflows/python_backend_build.yml

Lines changed: 7 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -107,15 +107,19 @@ jobs:
107107
uses: docker/metadata-action@v5
108108
with:
109109
images: |
110-
ttl.sh/localai-backends-ci-pr-${{ github.event.number }}
110+
quay.io/go-skynet/ci-tests:localai-backends-ci-pr-${{ github.event.number }}
111111
tags: |
112112
type=ref,event=branch
113113
type=semver,pattern={{raw}}
114114
type=sha
115115
flavor: |
116116
latest=${{ inputs.tag-latest }}
117117
suffix=${{ inputs.tag-suffix }}
118-
118+
- name: Testing image
119+
if: github.event_name == 'pull_request'
120+
run: |
121+
echo "Image is available at quay.io/go-skynet/ci-tests:localai-backends-ci-pr-${{ github.event.number }}:${{ steps.meta_pull_request.outputs.version }}" >> $GITHUB_STEP_SUMMARY
122+
## End testing image
119123
- name: Set up QEMU
120124
uses: docker/setup-qemu-action@master
121125
with:
@@ -133,7 +137,7 @@ jobs:
133137
password: ${{ secrets.dockerPassword }}
134138

135139
- name: Login to Quay.io
136-
if: github.event_name != 'pull_request'
140+
# if: github.event_name != 'pull_request'
137141
uses: docker/login-action@v3
138142
with:
139143
registry: quay.io

0 commit comments

Comments
 (0)