93c841d379
This is follow-up of I5549e5edea33e720a7d5cf67c3056036daca52fc and always disables ceph repository in Ubuntu Jammy. This is required to disable the repository in litmus jobs. Depends-on: https://review.opendev.org/871542 Change-Id: I79aefa3e9d19c34fa6f13c861008cce3f6cb97ef
17 lines
546 B
YAML
17 lines
546 B
YAML
- hosts: all
|
|
tasks:
|
|
- shell:
|
|
cmd: |
|
|
set -e
|
|
set -x
|
|
trap "{{ ansible_user_dir }}/workspace/puppet-openstack-integration/copy_logs.sh" EXIT
|
|
export CEPH_VERSION={{ ceph }}
|
|
if [ "{{ puppet_gem_version }}" != "latest" ]; then
|
|
export PUPPET_GEM_VERSION='~> {{ puppet_gem_version }}'
|
|
fi
|
|
./run_litmus_tests.sh
|
|
executable: /bin/bash
|
|
chdir: '{{ ansible_user_dir }}/workspace'
|
|
become: yes
|
|
environment: '{{ zuul | zuul_legacy_vars }}'
|