updated pgvector
All checks were successful
CI / Build pgvector docker images (push) Successful in 15s
All checks were successful
CI / Build pgvector docker images (push) Successful in 15s
This commit is contained in:
@@ -6,14 +6,9 @@ on:
|
|||||||
- 'pgvector/**'
|
- 'pgvector/**'
|
||||||
- '.gitea/workflows/build-pgvector.yaml'
|
- '.gitea/workflows/build-pgvector.yaml'
|
||||||
jobs:
|
jobs:
|
||||||
"Build wildfly docker images":
|
"Build pgvector docker images":
|
||||||
runs-on: woryzen
|
runs-on: woryzen
|
||||||
steps:
|
steps:
|
||||||
-
|
|
||||||
name: Set up Docker Buildx
|
|
||||||
uses: docker/setup-buildx-action@v3.4.0
|
|
||||||
with:
|
|
||||||
driver: docker-container
|
|
||||||
-
|
-
|
||||||
name: Login to Gitea container registry
|
name: Login to Gitea container registry
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
@@ -25,15 +20,18 @@ jobs:
|
|||||||
name: Build and push pgvector images
|
name: Build and push pgvector images
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v6
|
||||||
with:
|
with:
|
||||||
|
builder: multiplatform-builder
|
||||||
context: "{{defaultContext}}:pgvector"
|
context: "{{defaultContext}}:pgvector"
|
||||||
push: true
|
push: true
|
||||||
pull: true
|
pull: true
|
||||||
|
platforms: |
|
||||||
|
linux/amd64
|
||||||
|
linux/arm64
|
||||||
tags: |
|
tags: |
|
||||||
"gitea.woggioni.net/woggioni/pgvector:latest"
|
"gitea.woggioni.net/woggioni/pgvector:latest"
|
||||||
"gitea.woggioni.net/woggioni/pgvector:0.8.1-pg17"
|
"gitea.woggioni.net/woggioni/pgvector:0.8.1-pg18.1-alpine3.23"
|
||||||
build-args: |
|
build-args: |
|
||||||
PG_VERSION=17
|
PG_VERSION=18.1
|
||||||
|
ALPINE_VERSION=3.23
|
||||||
PGVECTOR_VERSION=0.8.1
|
PGVECTOR_VERSION=0.8.1
|
||||||
cache-from: type=registry,ref=gitea.woggioni.net/woggioni/pgvector:buildx
|
|
||||||
cache-to: type=registry,mode=max,compression=zstd,image-manifest=true,oci-mediatypes=true,ref=gitea.woggioni.net/woggioni/pgvector:buildx
|
|
||||||
|
|
||||||
|
|||||||
@@ -1,5 +1,5 @@
|
|||||||
ARG PG_VERSION=17
|
ARG PG_VERSION=18.1 ALPINE_VERSION=3.23
|
||||||
FROM postgres:${PG_VERSION}-alpine AS build
|
FROM postgres:${PG_VERSION}-alpine${ALPINE_VERSION} AS build
|
||||||
|
|
||||||
ARG PGVECTOR_VERSION
|
ARG PGVECTOR_VERSION
|
||||||
WORKDIR /
|
WORKDIR /
|
||||||
|
|||||||
Reference in New Issue
Block a user