Commit 7e542812 authored by Sergio Gimenez's avatar Sergio Gimenez
Browse files

ci: remove gitlab pages pipeline

The public documentation now lives in the separate documentation repository, so the automation repository no longer needs a GitLab Pages pipeline.
parent c094ea4e
Loading
Loading
Loading
Loading

.gitlab-ci.yml

deleted100644 → 0
+0 −32
Original line number Diff line number Diff line
image: python:3.9-alpine

stages:
#   - lint
  - deploy

# ansible-lint:
#   stage: lint
#   image: python:3.9
#   script:
#     - pip install ansible-lint
#     - cd ansible
#     - chmod 700 .
#     - 'echo "profile: min" > .ansible-lint'
#     - 'echo "skip_list:" >> .ansible-lint'
#     - 'echo "  - var-naming" >> .ansible-lint'
#     - 'echo "  - yaml[line-length]" >> .ansible-lint'
#     - 'echo "  - run-once[task]" >> .ansible-lint'
#     - 'echo "  - no-handler" >> .ansible-lint'
#     - ansible-galaxy collection install -r requirements.yml --ignore-certs
#     - ansible-lint playbooks/ roles/

pages:
  stage: deploy
  script:
    - pip install -r docs/requirements.txt
    - python -m mkdocs build
  artifacts:
    paths:
      - public
  rules:
    - if: $CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH