kserve ci #6
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: KServe CI CPU | |
on: | |
workflow_dispatch: | |
push: | |
# runs everyday at 5:15am | |
schedule: | |
- cron: '15 5 * * *' | |
jobs: | |
test-model-prediction-on-k8s: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout TorchServe | |
uses: actions/checkout@v3 | |
- name: Setup minikube | |
uses: medyagh/setup-minikube@master | |
- name: Setup Python 3.8 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
architecture: x64 | |
- name: Checkout tools repo | |
uses: actions/checkout@v4 | |
with: | |
repository: kserve/kserve | |
path: kserve | |
- run: pwd | |
- run: ls | |
- run: ls kserve/* | |
- name: Checkout TorchServe | |
uses: actions/checkout@v3 | |
- run: pwd | |
- run: ls | |
- name: Test model running in k8s cluster with sample image data | |
run: ./kubernetes/kserve/tests/scripts/test_mnist.sh /home/runner/work |