Skip to content
Merged
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
13 changes: 13 additions & 0 deletions .github/workflows/regression_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,17 @@ jobs:
run: |
apt-get update && apt-get install -y python3 python3-pip git ffmpeg libegl1 libegl-mesa0 libegl-dev libgl1 libglx-mesa0 libgles2 mesa-utils curl cmake build-essential

- name: Restore uv cache
uses: actions/cache/restore@v3
with:
path: ~/.cache/uv
key: uv-${{ runner.os }}-${{ hashFiles('uv.lock') }}

- name: Install uv
uses: astral-sh/setup-uv@v5
with:
version: "latest"
enable-cache: false

- name: Install dependencies
run: |
Expand Down Expand Up @@ -103,6 +110,12 @@ jobs:
mkdir -p /tmp/libero-assets/libero/libero
export LIBERO_CONFIG_PATH="$(pwd)/.github/assets/libero"

- name: Restore HF datasets cache
uses: actions/cache/restore@v3
with:
path: ~/.cache/huggingface
key: ${{ runner.os }}-hf-datasets-${{ hashFiles('**/config.json') }}

- name: Run Training
shell: bash
run: |
Expand Down
Loading