Skip to content

Commit

Permalink
Added Docker Hub login to E2E tests
Browse files Browse the repository at this point in the history
  • Loading branch information
alexthomas93 committed Aug 20, 2024
1 parent 9054023 commit e4faa45
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 0 deletions.
9 changes: 9 additions & 0 deletions .github/workflows/pr-e2e-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,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 @@ -36,6 +39,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 @@ -45,6 +51,9 @@ jobs:
ports:
- 7687:7687
- 7474:7474
credentials:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

steps:
- name: Check out repository code
Expand Down
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 e4faa45

Please sign in to comment.