Skip to content

Commit 0457626

Browse files
committed
Add curl download of test dataset to cross-language symmetry workflow
The downloadIngested symmetry tests (both MATLAB and Python) need the 69a8705aa9ab25373cdc6563.tgz dataset pre-downloaded to /tmp. MATLAB's websave doesn't work in GitHub Actions, so this must be done via curl before either test suite runs. https://claude.ai/code/session_01X3Dg23mnjFYU1fjJBrahjt
1 parent 1680fe5 commit 0457626

1 file changed

Lines changed: 6 additions & 0 deletions

File tree

.github/workflows/test-symmetry.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,12 @@ jobs:
6060
python -m pip install --upgrade pip
6161
python ndi_install.py --dev --no-validate --verbose
6262
63+
# ── Download test datasets ────────────────────────────────────────
64+
- name: Download test datasets
65+
run: |
66+
curl -L -o /tmp/69a8705aa9ab25373cdc6563.tgz \
67+
https://github.com/Waltham-Data-Science/file-passing/raw/refs/heads/main/69a8705aa9ab25373cdc6563.tgz
68+
6369
# ── Stage 1: MATLAB makeArtifacts ──────────────────────────────────
6470
- name: "Stage 1: MATLAB makeArtifacts"
6571
uses: matlab-actions/run-command@v2

0 commit comments

Comments
 (0)