Skip to content

Commit

Permalink
add dataset to circleCI and docs
Browse files Browse the repository at this point in the history
  • Loading branch information
drammock committed Jan 17, 2025
1 parent 50b5be3 commit c385f96
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -297,6 +297,25 @@ jobs:
paths:
- ~/mne_data/eeg_matchingpennies

cache_MNE-funloc-data:
<<: *imageconfig
steps:
- attach_workspace:
at: ~/
- restore_cache:
keys:
- data-cache-MNE-funloc-data-1
- bash_env
- run:
name: Get MNE-funloc-data
command: |
$DOWNLOAD_DATA MNE-funloc-data
- codecov/upload
- save_cache:
key: data-cache-MNE-funloc-data-1
paths:
- ~/mne_data/MNE-funloc-data

cache_MNE-phantom-KIT-data:
<<: *imageconfig
steps:
Expand Down Expand Up @@ -784,6 +803,32 @@ jobs:
paths:
- mne_data/derivatives/mne-bids-pipeline/eeg_matchingpennies/*/*/*.html

test_MNE-funloc-data:
<<: *imageconfig
steps:
- attach_workspace:
at: ~/
- bash_env
- restore_cache:
keys:
- data-cache-MNE-funloc-data-1
- run:
name: test MNE-funloc-data
command: $RUN_TESTS MNE-funloc-data
- codecov/upload
- store_test_results:
path: ./test-results
- store_artifacts:
path: ./test-results
destination: test-results
- store_artifacts:
path: /home/circleci/reports/MNE-funloc-data
destination: reports/MNE-funloc-data
- persist_to_workspace:
root: ~/
paths:
- mne_data/derivatives/mne-bids-pipeline/MNE-funloc-data/*/*/*.html

test_MNE-phantom-KIT-data:
<<: *imageconfig
steps:
Expand Down Expand Up @@ -1244,6 +1289,15 @@ workflows:
- cache_eeg_matchingpennies
<<: *filter_tags

- cache_MNE-funloc-data:
requires:
- setup_env
<<: *filter_tags
- test_MNE-funloc-data:
requires:
- cache_MNE-funloc-data
<<: *filter_tags

- cache_MNE-phantom-KIT-data:
requires:
- setup_env
Expand Down Expand Up @@ -1304,6 +1358,7 @@ workflows:
- test_ds003392
- test_ds004229
- test_eeg_matchingpennies
- test_MNE-funloc-data
- test_MNE-phantom-KIT-data
- test_ERP_CORE_N400
- test_ERP_CORE_ERN
Expand Down
1 change: 1 addition & 0 deletions docs/mkdocs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ nav:
- examples/ds000248_no_mri.md
- examples/ds003104.md
- examples/eeg_matchingpennies.md
- examples/MNE-funloc-data.md
- examples/MNE-phantom-KIT-data.md
- examples/ds001810.md
- examples/ds000117.md
Expand Down

0 comments on commit c385f96

Please sign in to comment.