diff --git a/playbooks/legacy/training-guides-tox-doc-publish-checkbuild/post.yaml b/playbooks/legacy/training-guides-tox-doc-publish-checkbuild/post.yaml deleted file mode 100644 index cee7fed0..00000000 --- a/playbooks/legacy/training-guides-tox-doc-publish-checkbuild/post.yaml +++ /dev/null @@ -1,23 +0,0 @@ -- hosts: primary - tasks: - - - name: Copy files from publish-docs/ on node - synchronize: - src: '{{ ansible_user_dir }}/workspace/publish-docs/' - dest: '{{ zuul.executor.log_root }}/html/' - mode: pull - copy_links: true - verify_host: true - - - name: Copy files from {{ ansible_user_dir }}/workspace/ on node - synchronize: - src: '{{ ansible_user_dir }}/workspace/' - dest: '{{ zuul.executor.log_root }}' - mode: pull - copy_links: true - verify_host: true - rsync_opts: - - --include=/build-*.log.gz - - --include=*/ - - --exclude=* - - --prune-empty-dirs diff --git a/playbooks/legacy/training-guides-tox-doc-publish-checkbuild/run.yaml b/playbooks/legacy/training-guides-tox-doc-publish-checkbuild/run.yaml deleted file mode 100644 index f0613a8c..00000000 --- a/playbooks/legacy/training-guides-tox-doc-publish-checkbuild/run.yaml +++ /dev/null @@ -1,79 +0,0 @@ -- hosts: all - name: Autoconverted job legacy-training-guides-tox-doc-publish-checkbuild from old - job gate-training-guides-tox-doc-publish-checkbuild - tasks: - - - name: Ensure legacy workspace directory - file: - path: '{{ ansible_user_dir }}/workspace' - state: directory - - - shell: - cmd: | - set -e - set -x - CLONEMAP=`mktemp` - REQS_DIR=`mktemp -d` - function cleanup { - mkdir -p $WORKSPACE - rm -rf $CLONEMAP $REQS_DIR - } - trap cleanup EXIT - cat > $CLONEMAP << EOF - clonemap: - - name: $ZUUL_PROJECT - dest: . - EOF - # zuul cloner works poorly if there are 2 names that are the - # same in here. - if [[ "$ZUUL_PROJECT" != "openstack/requirements" ]]; then - cat >> $CLONEMAP << EOF - - name: openstack/requirements - dest: $REQS_DIR - EOF - fi - /usr/zuul-env/bin/zuul-cloner -m $CLONEMAP --cache-dir /opt/git \ - git://git.openstack.org $ZUUL_PROJECT openstack/requirements - # REQS_DIR is not set for openstack/requirements and there is also - # no need to copy in this case. - if [[ "$ZUUL_PROJECT" != "openstack/requirements" ]]; then - cp $REQS_DIR/upper-constraints.txt ./ - fi - executable: /bin/bash - chdir: '{{ ansible_user_dir }}/workspace' - environment: '{{ zuul | zuul_legacy_vars }}' - - - shell: - cmd: /usr/local/jenkins/slave_scripts/install-distro-packages.sh - chdir: '{{ ansible_user_dir }}/workspace' - environment: '{{ zuul | zuul_legacy_vars }}' - - - shell: - cmd: | - set -x - sudo rm -f /etc/sudoers.d/zuul - # Prove that general sudo access is actually revoked - ! sudo -n true - executable: /bin/bash - chdir: '{{ ansible_user_dir }}/workspace' - environment: '{{ zuul | zuul_legacy_vars }}' - - - shell: - cmd: /usr/local/jenkins/slave_scripts/run-tox.sh checkbuild - chdir: '{{ ansible_user_dir }}/workspace' - environment: '{{ zuul | zuul_legacy_vars }}' - - - shell: - cmd: | - OUT=`git ls-files --other --exclude-standard --directory` - if [ -z "$OUT" ]; then - echo "No extra files created during test." - exit 0 - else - echo "The following un-ignored files were created during the test:" - echo "$OUT" - exit 0 # TODO: change to 1 to fail tests. - fi - executable: /bin/bash - chdir: '{{ ansible_user_dir }}/workspace' - environment: '{{ zuul | zuul_legacy_vars }}' diff --git a/playbooks/legacy/training-guides-tox-doc-publishdocs/post.yaml b/playbooks/legacy/training-guides-tox-doc-publishdocs/post.yaml deleted file mode 100644 index f5e2fed9..00000000 --- a/playbooks/legacy/training-guides-tox-doc-publishdocs/post.yaml +++ /dev/null @@ -1,15 +0,0 @@ -- hosts: primary - tasks: - - - name: Copy files from {{ ansible_user_dir }}/workspace/ on node - synchronize: - src: '{{ ansible_user_dir }}/workspace/' - dest: '{{ zuul.executor.log_root }}' - mode: pull - copy_links: true - verify_host: true - rsync_opts: - - --include=/build-*.log.gz - - --include=*/ - - --exclude=* - - --prune-empty-dirs diff --git a/playbooks/legacy/training-guides-tox-doc-publishdocs/run.yaml b/playbooks/legacy/training-guides-tox-doc-publishdocs/run.yaml deleted file mode 100644 index 8c3b3d7b..00000000 --- a/playbooks/legacy/training-guides-tox-doc-publishdocs/run.yaml +++ /dev/null @@ -1,64 +0,0 @@ -- hosts: all - name: Autoconverted job legacy-training-guides-tox-doc-publishdocs from old job - training-guides-tox-doc-publishdocs - tasks: - - - name: Ensure legacy workspace directory - file: - path: '{{ ansible_user_dir }}/workspace' - state: directory - - - shell: - cmd: | - set -e - set -x - CLONEMAP=`mktemp` - REQS_DIR=`mktemp -d` - function cleanup { - mkdir -p $WORKSPACE - rm -rf $CLONEMAP $REQS_DIR - } - trap cleanup EXIT - cat > $CLONEMAP << EOF - clonemap: - - name: $ZUUL_PROJECT - dest: . - EOF - # zuul cloner works poorly if there are 2 names that are the - # same in here. - if [[ "$ZUUL_PROJECT" != "openstack/requirements" ]]; then - cat >> $CLONEMAP << EOF - - name: openstack/requirements - dest: $REQS_DIR - EOF - fi - /usr/zuul-env/bin/zuul-cloner -m $CLONEMAP --cache-dir /opt/git \ - git://git.openstack.org $ZUUL_PROJECT openstack/requirements - # REQS_DIR is not set for openstack/requirements and there is also - # no need to copy in this case. - if [[ "$ZUUL_PROJECT" != "openstack/requirements" ]]; then - cp $REQS_DIR/upper-constraints.txt ./ - fi - executable: /bin/bash - chdir: '{{ ansible_user_dir }}/workspace' - environment: '{{ zuul | zuul_legacy_vars }}' - - - shell: - cmd: /usr/local/jenkins/slave_scripts/install-distro-packages.sh - chdir: '{{ ansible_user_dir }}/workspace' - environment: '{{ zuul | zuul_legacy_vars }}' - - - shell: - cmd: | - set -x - sudo rm -f /etc/sudoers.d/zuul - # Prove that general sudo access is actually revoked - ! sudo -n true - executable: /bin/bash - chdir: '{{ ansible_user_dir }}/workspace' - environment: '{{ zuul | zuul_legacy_vars }}' - - - shell: - cmd: /usr/local/jenkins/slave_scripts/run-tox.sh publishdocs - chdir: '{{ ansible_user_dir }}/workspace' - environment: '{{ zuul | zuul_legacy_vars }}' diff --git a/zuul.d/zuul-legacy-jobs.yaml b/zuul.d/zuul-legacy-jobs.yaml index d64e5757..255b2796 100644 --- a/zuul.d/zuul-legacy-jobs.yaml +++ b/zuul.d/zuul-legacy-jobs.yaml @@ -13303,25 +13303,6 @@ required-projects: - openstack/requirements -- job: - name: legacy-training-guides-tox-doc-publish-checkbuild - parent: legacy-base - success-url: html/ - run: playbooks/legacy/training-guides-tox-doc-publish-checkbuild/run - post-run: playbooks/legacy/training-guides-tox-doc-publish-checkbuild/post - timeout: 2400 - required-projects: - - openstack/requirements - -- job: - name: legacy-training-guides-tox-doc-publishdocs - parent: legacy-base - run: playbooks/legacy/training-guides-tox-doc-publishdocs/run - post-run: playbooks/legacy/training-guides-tox-doc-publishdocs/post - timeout: 2400 - required-projects: - - openstack/requirements - - job: name: legacy-training-labs-scripts parent: legacy-publish-openstack-artifacts