FAQ | This is a LIVE service | Changelog

Skip to content
Snippets Groups Projects
Commit bec0c77e authored by L. Bower's avatar L. Bower
Browse files

adding custom date params to pipeline

parent 61a240d0
No related branches found
No related tags found
No related merge requests found
......@@ -147,9 +147,6 @@ full_fat_depo:
- >
cd $CI_PROJECT_DIR/tests/integration/full/
date=$(date '+%Y-%m-%d-%H%M');
mkdir ${TEST_WORKSPACE_DIR}/integration/full/${date};
python3 full_test_deposition.py
--config /storage/app/EWS_prod/regions/EastAfrica/resources/coordinator/configs/config_EastAfrica_fc_live.json
--outdir $OUTPUT_DIR
......@@ -157,11 +154,15 @@ full_fat_depo:
--run_date_type $FULL_FAT_RUN_DATE
--custom_run_date $CUSTOM_RUN_DATE
#if [[ "$FULL_FAT_COPY_OUTPUT" == "true" ]];
#then
after_script:
- >
if [[ "$FULL_FAT_COPY_OUTPUT" == "true" ]];
then
date=$(date '+%Y-%m-%d-%H%M');
mkdir ${TEST_WORKSPACE_DIR}/integration/full/${date};
cp -rv $OUTPUT_DIR/* ${TEST_WORKSPACE_DIR}/integration/full/${date};
#fi
fi
artifacts:
paths:
- $OUTPUT_DIR/*/log.txt
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment