Skip to content

Commit

Permalink
ci: move scheduled tests into a single workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
nicoloboschi committed Jan 31, 2024
1 parent 30f8a6e commit 3156bc7
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/ci-e2e-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ jobs:
vector-database-type: "local-cassandra"
deploy-to-slack: true
slack-title: "RAGStack dev / DSE"
deploy-to-testspace: ${{ needs.preconditions.outputs.is-scheduled }}
deploy-to-testspace: ${{ needs.preconditions.outputs.is-scheduled == 'true' }}
testspace-space: "RAGStack test suite - RAGStack dev - DSE"

ragstack-dev-astradev-tests:
Expand All @@ -63,7 +63,7 @@ jobs:
vector-database-type: "astradb"
deploy-to-slack: true
slack-title: "RAGStack dev / AstraDB dev"
deploy-to-testspace: ${{ needs.preconditions.outputs.is-scheduled }}
deploy-to-testspace: ${{ needs.preconditions.outputs.is-scheduled == 'true' }}
testspace-space: "RAGStack test suite - RAGStack dev - AstraDB"

langchain-dse-tests:
Expand All @@ -77,7 +77,7 @@ jobs:
vector-database-type: "local-cassandra"
deploy-to-slack: true
slack-title: "LangChain dev / DSE"
deploy-to-testspace: ${{ needs.preconditions.outputs.is-scheduled }}
deploy-to-testspace: ${{ needs.preconditions.outputs.is-scheduled == 'true' }}
testspace-space: "RAGStack test suite - LangChain dev - DSE"

langchain-astradev-tests:
Expand All @@ -96,7 +96,7 @@ jobs:
vector-database-type: "astradb"
deploy-to-slack: true
slack-title: "LangChain dev / AstraDB dev"
deploy-to-testspace: true
deploy-to-testspace: ${{ needs.preconditions.outputs.is-scheduled == 'true' }}
testspace-space: "RAGStack test suite - LangChain dev - AstraDB"

llamaindex-dse-tests:
Expand All @@ -110,7 +110,7 @@ jobs:
vector-database-type: "local-cassandra"
deploy-to-slack: true
slack-title: "LLamaIndex dev / DSE"
deploy-to-testspace: ${{ needs.preconditions.outputs.is-scheduled }}
deploy-to-testspace: ${{ needs.preconditions.outputs.is-scheduled == 'true' }}
testspace-space: "RAGStack test suite - LLamaIndex dev - DSE"

llamaindex-astradev-tests:
Expand All @@ -129,7 +129,7 @@ jobs:
vector-database-type: "astradb"
deploy-to-slack: true
slack-title: "LLamaIndex dev / AstraDB dev"
deploy-to-testspace: true
deploy-to-testspace: ${{ needs.preconditions.outputs.is-scheduled == 'true' }}
testspace-space: "RAGStack test suite - LLamaIndex dev - AstraDB"

ragstack-latest-release-dse-tests:
Expand All @@ -143,7 +143,7 @@ jobs:
vector-database-type: "local-cassandra"
deploy-to-slack: true
slack-title: "RAGStack latest / DSE"
deploy-to-testspace: ${{ needs.preconditions.outputs.is-scheduled }}
deploy-to-testspace: ${{ needs.preconditions.outputs.is-scheduled == 'true' }}
testspace-space: "RAGStack test suite - RAGStack latest - DSE"

ragstack-latest-release-astradev-tests:
Expand All @@ -162,5 +162,5 @@ jobs:
vector-database-type: "astradb"
deploy-to-slack: true
slack-title: "RAGStack latest / AstraDB dev"
deploy-to-testspace: true
deploy-to-testspace: ${{ needs.preconditions.outputs.is-scheduled == 'true' }}
testspace-space: "RAGStack test suite - RAGStack latest - AstraDB"

0 comments on commit 3156bc7

Please sign in to comment.