-
Notifications
You must be signed in to change notification settings - Fork 427
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
move test data download to action file, add start of lab build job, t…
…ry removing some "fluff" from testing to see if necessary
- Loading branch information
Showing
2 changed files
with
73 additions
and
20 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: download_test_data | ||
runs: | ||
using: composite | ||
steps: | ||
- name: download_test_data | ||
run: | | ||
# Disable clone protection for git lfs | ||
export GIT_CLONE_PROTECTION_ACTIVE=false | ||
git --version | ||
git-lfs --version | ||
export PATH=$HOME/miniconda/bin:/usr/local/cuda/bin:$PATH | ||
conda init | ||
source ~/.bashrc | ||
conda activate habitat | ||
conda install -y gitpython git-lfs | ||
cd habitat-sim | ||
git lfs install | ||
python src_python/habitat_sim/utils/datasets_download.py --uids ci_test_assets ycb rearrange_dataset_v2 --replace --data-path data/ --no-prune | ||
ls -la data/scene_datasets/habitat-test-scenes/ | ||
shell: bash -el {0} |
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