FAQ | This is a LIVE service | Changelog

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

more test work

parent e6ea797f
Loading
...@@ -133,11 +133,11 @@ full_fat_depo: ...@@ -133,11 +133,11 @@ full_fat_depo:
--test_report_dir $CI_PROJECT_DIR/test_reports --test_report_dir $CI_PROJECT_DIR/test_reports
--run_date_type $FULL_FAT_RUN_DATE --run_date_type $FULL_FAT_RUN_DATE
--custom_run_date $CUSTOM_RUN_DATE --custom_run_date $CUSTOM_RUN_DATE
rsync -av --include="*/" --include="log.txt" --exclude="*" $OUTPUT_DIR/ $LOGS_DIR/
after_script: after_script:
- > - >
rsync -av --include="*/" --include="log.txt" --exclude="*" $OUTPUT_DIR/ $LOGS_DIR/
if [[ "$FULL_FAT_COPY_OUTPUT" == "true" ]]; if [[ "$FULL_FAT_COPY_OUTPUT" == "true" ]];
then then
date=$(date '+%Y-%m-%d-%H%M'); date=$(date '+%Y-%m-%d-%H%M');
...@@ -169,6 +169,8 @@ full_fat_env_suit: ...@@ -169,6 +169,8 @@ full_fat_env_suit:
after_script: after_script:
- > - >
rsync -av --include="*/" --include="log.txt" --exclude="*" $OUTPUT_DIR/ $LOGS_DIR/
if [[ "$FULL_FAT_COPY_OUTPUT" == "true" ]]; if [[ "$FULL_FAT_COPY_OUTPUT" == "true" ]];
then then
date=$(date '+%Y-%m-%d-%H%M'); date=$(date '+%Y-%m-%d-%H%M');
...@@ -179,8 +181,7 @@ full_fat_env_suit: ...@@ -179,8 +181,7 @@ full_fat_env_suit:
artifacts: artifacts:
when: on_failure when: on_failure
paths: paths:
- $OUTPUT_DIR/*/log.txt - $LOGS_DIR
- $OUTPUT_DIR/*.txt
expire_in: 10 days expire_in: 10 days
full_fat_survey: full_fat_survey:
...@@ -202,6 +203,8 @@ full_fat_survey: ...@@ -202,6 +203,8 @@ full_fat_survey:
after_script: after_script:
- > - >
rsync -av --include="*/" --include="log.txt" --exclude="*" $OUTPUT_DIR/ $LOGS_DIR/
if [[ "$FULL_FAT_COPY_OUTPUT" == "true" ]]; if [[ "$FULL_FAT_COPY_OUTPUT" == "true" ]];
then then
date=$(date '+%Y-%m-%d-%H%M'); date=$(date '+%Y-%m-%d-%H%M');
...@@ -212,8 +215,7 @@ full_fat_survey: ...@@ -212,8 +215,7 @@ full_fat_survey:
artifacts: artifacts:
when: on_failure when: on_failure
paths: paths:
- $OUTPUT_DIR/*/log.txt - $LOGS_DIR
- $OUTPUT_DIR/*.txt
expire_in: 10 days expire_in: 10 days
full_fat_advisory: full_fat_advisory:
...@@ -235,6 +237,8 @@ full_fat_advisory: ...@@ -235,6 +237,8 @@ full_fat_advisory:
after_script: after_script:
- > - >
rsync -av --include="*/" --include="log.txt" --exclude="*" $OUTPUT_DIR/ $LOGS_DIR/
if [[ "$FULL_FAT_COPY_OUTPUT" == "true" ]]; if [[ "$FULL_FAT_COPY_OUTPUT" == "true" ]];
then then
date=$(date '+%Y-%m-%d-%H%M'); date=$(date '+%Y-%m-%d-%H%M');
...@@ -245,8 +249,7 @@ full_fat_advisory: ...@@ -245,8 +249,7 @@ full_fat_advisory:
artifacts: artifacts:
when: on_failure when: on_failure
paths: paths:
- $OUTPUT_DIR/*/log.txt - $LOGS_DIR
- $OUTPUT_DIR/*.txt
expire_in: 10 days expire_in: 10 days
full_fat_epi: full_fat_epi:
...@@ -268,6 +271,8 @@ full_fat_epi: ...@@ -268,6 +271,8 @@ full_fat_epi:
after_script: after_script:
- > - >
rsync -av --include="*/" --include="log.txt" --exclude="*" $OUTPUT_DIR/ $LOGS_DIR/
if [[ "$FULL_FAT_COPY_OUTPUT" == "true" ]]; if [[ "$FULL_FAT_COPY_OUTPUT" == "true" ]];
then then
date=$(date '+%Y-%m-%d-%H%M'); date=$(date '+%Y-%m-%d-%H%M');
...@@ -278,8 +283,7 @@ full_fat_epi: ...@@ -278,8 +283,7 @@ full_fat_epi:
artifacts: artifacts:
when: on_failure when: on_failure
paths: paths:
- $OUTPUT_DIR/*/log.txt - $LOGS_DIR
- $OUTPUT_DIR/*.txt
expire_in: 10 days expire_in: 10 days
pages: pages:
......
...@@ -4,7 +4,7 @@ FROM ubuntu:24.04 as base_image ...@@ -4,7 +4,7 @@ FROM ubuntu:24.04 as base_image
SHELL ["/bin/bash", "-c"] SHELL ["/bin/bash", "-c"]
#install system packages #install system packages
RUN apt-get update;apt-get install --assume-yes python-dev-is-python3 python3-dev python3.11-venv wget unzip emacs gdal-bin libgdal-dev build-essential gfortran zlib1g zlib1g-dev libbz2-dev apt-utils liblzma-dev libcurl4-openssl-dev default-jre openssh-server libfribidi-dev libfontconfig1-dev libspatialindex-dev git dos2unix nano; RUN apt-get update;apt-get install --assume-yes python-dev-is-python3 python3-dev python3.11-venv wget unzip emacs gdal-bin libgdal-dev build-essential gfortran zlib1g zlib1g-dev libbz2-dev apt-utils liblzma-dev libcurl4-openssl-dev default-jre openssh-server libfribidi-dev libfontconfig1-dev libspatialindex-dev git dos2unix nano rsync;
#sets the timezone to London #sets the timezone to London
RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get -y install tzdata RUN DEBIAN_FRONTEND=noninteractive TZ=Etc/UTC apt-get -y install tzdata
......
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