Skip to content
Snippets Groups Projects
Commit 3afe129f authored by Sun Jin Kim's avatar Sun Jin Kim
Browse files

revert last commit

parent 84904cda
No related branches found
No related tags found
No related merge requests found
# build-job:
# stage: build
# script:
# - echo "Hello, I'm Building"
# - pip install pytest
# - pip install flask
# - pip install pandoc # for pdf making
# - pip install weasyprint # for pdf making
build-job:
stage: build
script:
- echo "Hello, I'm Building"
- pip install pytest
- pip install flask
- pip install pandoc # for pdf making
- pip install weasyprint # for pdf making
# test-job:
# stage: test
# script:
# - echo "Now I'm Testing!"
# - python3 -m tests.test_query_processor
test-job:
stage: test
script:
- echo "Now I'm Testing!"
- python3 -m tests.test_query_processor
# deploy-job:
# stage: deploy
# script:
# - echo "Now I'm Deploying to VM!"
# - python3 -m venv venv
# - . venv/bin/activate
# - pip install -r requirements.txt
# - flask run &
# - echo "Now I'm Deploying to Heroku!"
# - dpl --provider=heroku --app=metarl --api-key=5ccc3ae7-725e-4f9f-b441-0c9a28ebdc1b
deploy-job:
stage: deploy
script:
- echo "Now I'm Deploying to VM!"
- python3 -m venv venv
- . venv/bin/activate
- pip install -r requirements.txt
- flask run &
- echo "Now I'm Deploying to Heroku!"
- dpl --provider=heroku --app=metarl --api-key=5ccc3ae7-725e-4f9f-b441-0c9a28ebdc1b
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