Skip to content
Snippets Groups Projects
Commit 4e41206a authored by Menezes, Luke J (PG/T - Comp Sci & Elec Eng)'s avatar Menezes, Luke J (PG/T - Comp Sci & Elec Eng)
Browse files

Update .gitlab-ci.yml file

parent f950c015
No related branches found
No related tags found
No related merge requests found
Pipeline #72740 canceled
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"
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