Skip to content

Commit

Permalink
Bugfix/docker hub login (neo4j#108)
Browse files Browse the repository at this point in the history
* Added Docker Hub login to E2E tests

* Weaviate container is now pulled from Docker Hub

* Reverted cr.weaviate.io removal from E2E tests

* Retriggering E2E tests

* Removed Docker Hub login from PR E2E tests
  • Loading branch information
alexthomas93 authored Aug 21, 2024
1 parent 9054023 commit 6e544df
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/scheduled-e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
image: cr.weaviate.io/semitechnologies/transformers-inference:sentence-transformers-all-MiniLM-L6-v2-onnx
env:
ENABLE_CUDA: '0'
credentials:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
weaviate:
image: cr.weaviate.io/semitechnologies/weaviate:1.25.1
env:
Expand All @@ -34,6 +37,9 @@ jobs:
ports:
- 8080:8080
- 50051:50051
credentials:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
neo4j:
image: neo4j:${{ matrix.neo4j-version }}-${{ matrix.neo4j-edition }}
env:
Expand All @@ -43,6 +49,9 @@ jobs:
ports:
- 7687:7687
- 7474:7474
credentials:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

steps:
- name: Check out repository code
Expand Down

0 comments on commit 6e544df

Please sign in to comment.