From 6d65af2900a979dee2dc6b6e703e4048f2de91b2 Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Sun, 9 Sep 2018 06:47:12 +0200 Subject: [PATCH] Import legacy job Import legacy job from openstack-zuul-jobs. Change-Id: I5c28ce42606dc96d7df179a46e55abe453f93fe8 --- .zuul.yaml | 13 ++- .../devstack-plugin-container-dsvm/post.yaml | 80 +++++++++++++++++++ .../devstack-plugin-container-dsvm/run.yaml | 69 ++++++++++++++++ 3 files changed, 161 insertions(+), 1 deletion(-) create mode 100644 playbooks/devstack-plugin-container-dsvm/post.yaml create mode 100644 playbooks/devstack-plugin-container-dsvm/run.yaml diff --git a/.zuul.yaml b/.zuul.yaml index 2149ae8..d9c627a 100644 --- a/.zuul.yaml +++ b/.zuul.yaml @@ -1,7 +1,18 @@ +- job: + name: devstack-plugin-container-dsvm + parent: legacy-dsvm-base + run: playbooks/devstack-plugin-container-dsvm/run.yaml + post-run: playbooks/devstack-plugin-container-dsvm/post.yaml + timeout: 4200 + required-projects: + - openstack-dev/devstack + - openstack-infra/devstack-gate + - openstack/devstack-plugin-container + - project: check: jobs: - - legacy-devstack-plugin-container-dsvm: + - devstack-plugin-container-dsvm: voting: false gate: jobs: diff --git a/playbooks/devstack-plugin-container-dsvm/post.yaml b/playbooks/devstack-plugin-container-dsvm/post.yaml new file mode 100644 index 0000000..dac8753 --- /dev/null +++ b/playbooks/devstack-plugin-container-dsvm/post.yaml @@ -0,0 +1,80 @@ +- 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=**/*nose_results.html + - --include=*/ + - --exclude=* + - --prune-empty-dirs + + - 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=**/*testr_results.html.gz + - --include=*/ + - --exclude=* + - --prune-empty-dirs + + - 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=/.testrepository/tmp* + - --include=*/ + - --exclude=* + - --prune-empty-dirs + + - 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=**/*testrepository.subunit.gz + - --include=*/ + - --exclude=* + - --prune-empty-dirs + + - name: Copy files from {{ ansible_user_dir }}/workspace/ on node + synchronize: + src: '{{ ansible_user_dir }}/workspace/' + dest: '{{ zuul.executor.log_root }}/tox' + mode: pull + copy_links: true + verify_host: true + rsync_opts: + - --include=/.tox/*/log/* + - --include=*/ + - --exclude=* + - --prune-empty-dirs + + - 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=/logs/** + - --include=*/ + - --exclude=* + - --prune-empty-dirs diff --git a/playbooks/devstack-plugin-container-dsvm/run.yaml b/playbooks/devstack-plugin-container-dsvm/run.yaml new file mode 100644 index 0000000..a4b7f12 --- /dev/null +++ b/playbooks/devstack-plugin-container-dsvm/run.yaml @@ -0,0 +1,69 @@ +- hosts: all + name: Autoconverted job legacy-devstack-plugin-container-dsvm from old job gate-devstack-plugin-container-dsvm-nv + tasks: + + - name: Ensure legacy workspace directory + file: + path: '{{ ansible_user_dir }}/workspace' + state: directory + + - shell: + cmd: | + set -e + set -x + cat > clonemap.yaml << EOF + clonemap: + - name: openstack-infra/devstack-gate + dest: devstack-gate + EOF + /usr/zuul-env/bin/zuul-cloner -m clonemap.yaml --cache-dir /opt/git \ + git://git.openstack.org \ + openstack-infra/devstack-gate + executable: /bin/bash + chdir: '{{ ansible_user_dir }}/workspace' + environment: '{{ zuul | zuul_legacy_vars }}' + + - shell: + cmd: | + set -e + set -x + cat << 'EOF' >>"/tmp/dg-local.conf" + [[local|localrc]] + enable_plugin devstack-plugin-container git://git.openstack.org/openstack/devstack-plugin-container + + EOF + executable: /bin/bash + chdir: '{{ ansible_user_dir }}/workspace' + environment: '{{ zuul | zuul_legacy_vars }}' + + - shell: + cmd: | + set -e + set -x + export PYTHONUNBUFFERED=true + export DEVSTACK_GATE_TEMPEST=0 + + export BRANCH_OVERRIDE=default + if [ "$BRANCH_OVERRIDE" != "default" ] ; then + export OVERRIDE_ZUUL_BRANCH=$BRANCH_OVERRIDE + fi + + export PROJECTS="openstack/devstack-plugin-container $PROJECTS" + # Keep localrc to be able to set some vars in post_test_hook + export KEEP_LOCALRC=1 + + function gate_hook { + bash -xe $BASE/new/devstack-plugin-container/contrib/gate_hook.sh + } + export -f gate_hook + + function post_test_hook { + bash -xe $BASE/new/devstack-plugin-container/contrib/post_test_hook.sh fullstack + } + export -f post_test_hook + + cp devstack-gate/devstack-vm-gate-wrap.sh ./safe-devstack-vm-gate-wrap.sh + ./safe-devstack-vm-gate-wrap.sh + executable: /bin/bash + chdir: '{{ ansible_user_dir }}/workspace' + environment: '{{ zuul | zuul_legacy_vars }}'