Commit 84ba76ba authored by Tharrington, Arnold's avatar Tharrington, Arnold
Browse files

Updated gitlab0ci.yml file.

parent cc499868
Loading
Loading
Loading
Loading
+19 −12
Original line number Diff line number Diff line
@@ -51,18 +51,25 @@ stages:

# This is a global cache job. We need to cache pip's package cache and the
# Python virtual environment.
global-cache-job:
    stage : prerequisites
    tags :
        - RuyLopez
# global-cache-job:
#     stage : prerequisites
#     tags :
#         - RuyLopez
#     cache:
#         key: $CI_COMMIT_REF_SLUG
#         paths:
#             - .cache/pip
#             - anansi_python_env/
#         policy: pull-push
#     script:
#         - echo "Global cache job..."
#
cache:
    key: $CI_COMMIT_REF_SLUG
    paths:
        - .cache/pip
        - anansi_python_env/
    policy: pull-push
    script:
        - echo "Global cache job..."

# This job installs a Python virtual environment.
install-python-virtual-environment: