Commit 93c74c0c authored by Patrizia Barria's avatar Patrizia Barria
Browse files

Modified yml file

parent a8b277f4
Loading
Loading
Loading
Loading
Loading

.gitignore

0 → 100644
+2 −0
Original line number Diff line number Diff line
# exclude from version control the file generated 
test_file.txt
+18 −0
Original line number Diff line number Diff line
@@ -9,3 +9,21 @@ build_job:
    - echo "Building the application..."
    - python -m py_compile program.py
    - echo "Building complete."

test_job_1:
  stage: test  # section where to run the job
  tags:
    - git-run-ia2  # who is running the job
  script:
    - echo "Running test group 1 ..."
    - python test_program.py
    - echo "Testing complete."

test_job_2:
  stage: test  # section where to run the job
  tags:
    - git-run-ia2  # who is running the job
  script:
    - echo "Running more tests in group 2..."
    - sleep 5
    - echo "Testing complete."