commented out last 3 jobs

This commit is contained in:
Liyu Xiao 2025-05-14 15:44:12 -04:00
parent 9226ea1094
commit 9eb9cb3b5b

View File

@ -31,14 +31,9 @@ jobs:
- name: Set up Python - name: Set up Python
uses: actions/setup-python@v4 uses: actions/setup-python@v4
with: with:
python-version: "3.9" python-version: "3.10"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: 1. Build Dataset - name: 1. Build Dataset
run: | run: |
@ -58,25 +53,25 @@ jobs:
# Placeholder: export a CLI or server into dist/ # Placeholder: export a CLI or server into dist/
- name: Upload Dataset Artifacts # - name: Upload Dataset Artifacts
uses: actions/upload-artifact@v3 # uses: actions/upload-artifact@v3
with: # with:
name: ria-dataset # name: ria-dataset
path: data/** # path: data/**
- name: Upload Checkpoints # - name: Upload Checkpoints
uses: actions/upload-artifact@v3 # uses: actions/upload-artifact@v3
with: # with:
name: ria-checkpoints # name: ria-checkpoints
path: checkpoints/** # path: checkpoints/**
- name: Upload Inference App # - name: Upload Inference App
uses: actions/upload-artifact@v3 # uses: actions/upload-artifact@v3
with: # with:
name: ria-demo-app # name: ria-demo-app
path: dist/** # path: dist/**