Commit b45d7f50 authored by Abhishek's avatar Abhishek
Browse files

Update .gitlab-ci.yml file

parent 8c7a0d66
Pipeline #11971 failed with stages
in 5 minutes and 40 seconds
...@@ -29,7 +29,7 @@ install_plugin: ...@@ -29,7 +29,7 @@ install_plugin:
script: script:
- apk add --no-cache bash curl jq git - apk add --no-cache bash curl jq git
- echo "Running plugin install script..." - echo "Running plugin install script..."
- bash ./script_1_install_plugin.sh - bash ./script_step1.sh
artifacts: artifacts:
paths: paths:
- plugin_install.log - plugin_install.log
...@@ -41,7 +41,7 @@ teacher_workflow: ...@@ -41,7 +41,7 @@ teacher_workflow:
script: script:
- apk add --no-cache bash curl jq git - apk add --no-cache bash curl jq git
- echo "Running teacher workflow..." - echo "Running teacher workflow..."
- bash ./script_2_teacher_workflow.sh - bash ./script_step2.sh
artifacts: artifacts:
paths: paths:
- .env # Contains course_id, assignment_id, etc. - .env # Contains course_id, assignment_id, etc.
...@@ -56,7 +56,7 @@ student_workflow: ...@@ -56,7 +56,7 @@ student_workflow:
script: script:
- apk add --no-cache bash curl jq git - apk add --no-cache bash curl jq git
- echo "Running student submission workflow..." - echo "Running student submission workflow..."
- bash ./script_3_student_workflow.sh - bash ./script_step3.sh
needs: needs:
- job: teacher_workflow - job: teacher_workflow
artifacts: true artifacts: true
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment