Skip to content

Commit ddab546

Browse files
authored
Merge pull request #274 from bsipocz/CI_validate_manifest
CI: validate deploy manifest for missing files
2 parents a6d24a7 + 74cca8e commit ddab546

2 files changed

Lines changed: 5 additions & 3 deletions

File tree

.github/workflows/ci_tests_run_notebooks.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -47,6 +47,10 @@ jobs:
4747
with:
4848
python-version: ${{ matrix.python-version }}
4949

50+
- name: Validating manifest
51+
if: ${{ matrix.os == 'ubuntu-latest' }}
52+
run: bash -c 'missing=false; for file in $(cat deploy_to_fornax_manifest.in); do if [ ! -f $file ]; then echo "Inconsistent" $file; missing=true; fi; done; if $missing; then exit 1; fi'
53+
5054
- name: Install dependencies
5155
run: python -m pip install --upgrade tox
5256

deploy_to_fornax_manifest.in

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,4 @@
1-
tutorials/2mass/sia_2mass_allsky.md
2-
tutorials/cosmos/sia_cosmos.md
1+
tutorials/cosmos/sia_v1_cosmos.md
32
tutorials/euclid/1_Euclid_intro_MER_images.md
43
tutorials/euclid/2_Euclid_intro_MER_catalog.md
54
tutorials/euclid/3_Euclid_intro_1D_spectra.md
@@ -31,7 +30,6 @@ tutorials/spherex/spherex_source_discovery/spherex_source_discovery_tool/default
3130
tutorials/spherex/spherex_source_discovery/spherex_source_discovery_tool/firefly_viz.py
3231
tutorials/spherex/spherex_source_discovery/spherex_source_discovery_tool/sdt_utils.py
3332
tutorials/spherex/spherex_source_discovery/spherex_source_discovery_tool/source_extraction.py
34-
tutorials/spitzer/siav2_seip.md
3533
tutorials/techniques-and-tools/cloud-access-intro.md
3634
tutorials/techniques-and-tools/Parallelize_Convolution.md
3735
tutorials/techniques-and-tools/irsa-hats-with-lsdb.md

0 commit comments

Comments
 (0)