Blob Blame History Raw
image: registry.opensuse.org/opensuse/infrastructure/containers/heroes-salt-testing:latest

stages:
  - test
  - deploy

validate:
  image: registry.opensuse.org/opensuse/infrastructure/containers_tumbleweed/heroes-salt-validation:latest
  stage: test
  script: bin/test_validate.sh
  tags:
    - docker
  rules:
    - if: $CI_COMMIT_BRANCH

show_highstate:
  stage: test
  before_script:
    - bin/prepare_test_env.sh -g -o Leap,15,4 -s
    - bin/get_formulas.py -c -d /srv/formula -s --clone-from 'https://gitlab.infra.opensuse.org/saltstack-formulas' --clone-branch production
  script: bin/test_show_highstate.sh
  tags:
    - docker
  artifacts:
    #when: on_failure
    paths:
      - '*.txt'
  rules:
    - if: $CI_COMMIT_BRANCH

test_haproxy:
  image: registry.opensuse.org/opensuse/infrastructure/containers/heroes-salt-testing-haproxy:latest
  stage: test
  before_script:
    - bin/prepare_test_env.sh -g -s -n
    - bin/replace_secrets.sh
    - bin/get_formulas.py -c -d /srv/formula -s --clone-from 'https://gitlab.infra.opensuse.org/saltstack-formulas' --clone-branch production -f haproxy
  script: bin/test_haproxy.sh
  tags:
    - docker
  artifacts:
    when: always
    paths:
      - '*.txt'
  rules:
    - if: $CI_COMMIT_BRANCH
#     changes:
#       - bin/test_haproxy.sh
#       - pillar/cluster/*/*
#       - pillar/common/haproxy/*
#       - salt/profile/proxy/*
#       - salt/role/proxy*

test_nginx:
  image: registry.opensuse.org/opensuse/infrastructure/containers/heroes-salt-testing-nginx:latest
  stage: test
  before_script:
    - bin/prepare_test_env.sh -g -s
    - bin/get_formulas.py -c -d /srv/formula -s --clone-from 'https://gitlab.infra.opensuse.org/saltstack-formulas' --clone-branch production -f nginx
  script: bin/test_nginx.sh
  tags:
    - docker
  artifacts:
    when: always
    paths:
      - '*.txt'
  rules:
    - if: $CI_COMMIT_BRANCH

test_sudo:
  stage: test
  before_script:
    - bin/prepare_test_env.sh -g -s -n
    - bin/get_formulas.py -c -d /srv/formula -s --clone-from 'https://gitlab.infra.opensuse.org/saltstack-formulas' --clone-branch production
  script: bin/test_sudo.sh
  tags:
    - docker
  rules:
    - if: $CI_COMMIT_BRANCH


# Dynamically generated jobs
prepare_includes:
  script:
    - mkdir .gitlab-ci.includes
    - bin/render_gitlab_ci_includes.py
  artifacts:
    paths:
      - .gitlab-ci.includes/test_highstate.yml

test_highstate:
  needs:
    - prepare_includes
  trigger:
    include:
      - artifact: .gitlab-ci.includes/test_highstate.yml
        job: prepare_includes
    strategy: depend


deploy_job:
  stage: deploy
  script:
    - "rsync -a --delete --super --owner --group --chown=477:479 --chmod='u=rwX,g=rX,o=' $PWD/ rsync://saltpush@witch1.infra.opensuse.org:873/salt-push/"
  tags:
    - docker
  rules:
    - if: $CI_COMMIT_BRANCH == "production"