Skip to content

AWS GPU (split)

AWS GPU (split) #20

Workflow file for this run

name: Single node cluster with Kind
# Controls when the workflow will run
on:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Deploy a cluster with kind
run: |
./scripts/deploy/kind.sh
- name: Run tests
run: |
./scripts/deploy/kind.sh --console ./scripts/ccn/test.sh
- name: Upload logs
if: always()
uses: actions/upload-artifact@v4
with:
name: logs
path: logs
if-no-files-found: ignore