From 37097377dbb5bc798c27b344c8734a55a3b794f9 Mon Sep 17 00:00:00 2001 From: "Menezes, Luke J (PG/T - Comp Sci & Elec Eng)" <lm01906@surrey.ac.uk> Date: Thu, 23 May 2024 18:03:42 +0000 Subject: [PATCH] Delete .gitlab-ci.yml --- .gitlab-ci.yml | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 1b6f61b..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,19 +0,0 @@ -image: python3.9 - -stages: - - pipeline - -before_script: - - pip3 install -r requirements.txt - -pipeline: - stage: pipeline - script: - - echo "build stage" - - jupyter nbconvert --to script app.ipynb - - if [ ! -f app.py ]; then echo "Conversion failed, exiting pipeline"; exit 1; fi - - echo "build completed" - - echo "Starting Flask" - - nohup python3 app.py & - - sleep 5 - - echo "App should have started in the background" \ No newline at end of file -- GitLab