Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

integration test POC #517

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
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
5 changes: 5 additions & 0 deletions .github/workflows/integration_tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,11 @@ on:
secrets:
RUNPOD_API_KEY:
required: true
workflow_dispatch:
inputs:
lorax_tag:
required: true
type: string
jobs:
deploy:
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions tests/create-pod.sh
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
IMAGE_NAME="$1"

runpodctl create pods \
--name lorax-tests-new \
--name lorax-tests \
--gpuType "NVIDIA A40" \
--imageName "$IMAGE_NAME" \
--imageName "ghcr.io/predibase/lorax:$IMAGE_NAME" \
--containerDiskSize 100 \
--volumeSize 100 \
--ports "8080/http" \
Expand Down
Loading