Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
18 changes: 12 additions & 6 deletions .github/workflows/ci-pipeline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,9 @@ jobs:
fetch-depth: 0
persist-credentials: false

- name: Free up storage
run: sudo rm -rf /usr/local/lib/android

- name: Build container and push to local registry
env:
CONTAINER: ${{ env.NAME }}:${{ env.TAG }}
Expand Down Expand Up @@ -63,6 +66,9 @@ jobs:
fetch-depth: 0
persist-credentials: false

- name: Free up storage
run: sudo rm -rf /usr/local/lib/android

- name: Download image
uses: actions/download-artifact@v5
with:
Expand All @@ -89,32 +95,32 @@ jobs:
-e POSTGRES_PASSWORD=pass \
-e POSTGRES_DB=mydb \
-p 5432:5432 \
ankane/pgvector
pgvector/pgvector:0.8.1-pg18-trixie

- name: Start Redis
if: matrix.db == 'redis'
run: |
podman run -d --name redis-test \
-p 6379:6379 \
redis/redis-stack-server:6.2.6-v19
redis/redis-stack-server:7.2.0-v19

- name: Start Elasticsearch
if: matrix.db == 'elastic'
run: |
podman run -d --name es-test \
-e "discovery.type=single-node" \
-e "xpack.security.enabled=true" \
-e "xpack.security.enabled=false" \
-e "xpack.security.http.ssl.enabled=false" \
-e "ELASTIC_PASSWORD=changeme" \
-e "ES_JAVA_OPTS=-Xms512m -Xmx512m" \
-p 9200:9200 \
elasticsearch:8.11.1
docker.elastic.co/elasticsearch/elasticsearch:8.12.1

- name: Start Qdrant
if: matrix.db == 'qdrant'
run: |
podman run -d --name qdrant-test \
-p 6333:6333 \
qdrant/qdrant
qdrant/qdrant:latest-unprivileged

- name: Wait for DB to start
run: sleep 30
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# 📚 vector-embedder

![Version: 1.0.0](https://img.shields.io/badge/Version-1.0.0-informational?style=flat-square)
![Version: 1.0.1](https://img.shields.io/badge/Version-1.0.1-informational?style=flat-square)
[![Quay Repository](https://img.shields.io/badge/Quay.io-vector--embedder-blue?logo=quay)](https://quay.io/repository/validatedpatterns/vector-embedder)
[![CI Pipeline](https://github.com/validatedpatterns-sandbox/vector-embedder/actions/workflows/ci-pipeline.yaml/badge.svg?branch=main)](https://github.com/validatedpatterns-sandbox/vector-embedder/actions/workflows/ci-pipeline.yaml)

Expand Down
Loading