Skip to content

Commit 7866406

Browse files
putting download at top and increasing max time to test
1 parent 63a18a7 commit 7866406

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

.github/workflows/lc_fticr_workflow_tests.yaml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ jobs:
1717
with:
1818
python-version: '3.8'
1919

20-
- name: Install Docker
21-
run: |
22-
curl -fsSL https://get.docker.com -o get-docker.sh
23-
sh get-docker.sh
24-
sudo usermod -aG docker $USER
25-
26-
- name: Install MiniWDL
27-
run: |
28-
python -m pip install --upgrade pip
29-
pip install miniwdl
20+
# - name: Install Docker
21+
# run: |
22+
# curl -fsSL https://get.docker.com -o get-docker.sh
23+
# sh get-docker.sh
24+
# sudo usermod -aG docker $USER
25+
26+
# - name: Install MiniWDL
27+
# run: |
28+
# python -m pip install --upgrade pip
29+
# pip install miniwdl
3030

3131
- name: Download LC-FTICR database and test data
3232
run: |

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ get-lcms-fticr-test-data:
120120
@echo "Checking if test data file exists"
121121
@if [ ! -f ./data/raw_data/lc_fticr/20231109_60885_SRFA_50ppm_5uL_LC_PolarAdv-001262_231109183242.raw ]; \
122122
then echo "Test data file does not exist, downloading"; \
123-
curl -fL --retry 5 --retry-delay 10 --max-time 120 -O --output-dir data/raw_data/lc_fticr/ https://nmdcdemo.emsl.pnl.gov/nom/test_data/enviroms_lcms_nom_test/20231109_60885_SRFA_50ppm_5uL_LC_PolarAdv-001262_231109183242.raw; \
123+
curl -fL --retry 3 --retry-delay 10 --max-time 500 -O --output-dir data/raw_data/lc_fticr/ https://nmdcdemo.emsl.pnl.gov/nom/test_data/enviroms_lcms_nom_test/20231109_60885_SRFA_50ppm_5uL_LC_PolarAdv-001262_231109183242.raw; \
124124
else echo "Test data file exists"; fi
125125

126126
# download ref

0 commit comments

Comments
 (0)