Merge "Gather facts for repo containers"

This commit is contained in:
Zuul 2021-03-01 10:37:57 +00:00 committed by Gerrit Code Review
commit 90f8fe6801
2 changed files with 7 additions and 7 deletions

View File

@ -13,6 +13,13 @@
# See the License for the specific language governing permissions and
# limitations under the License.
- name: gather build target facts
setup:
gather_subset: '!all:min'
delegate_to: "{{ item }}"
delegate_facts: true
with_items: "{{ groups['repo_all'] | default([inventory_hostname]) }}"
- include_tasks: "python_venv_wheel_build.yml"
args:
apply:

View File

@ -13,13 +13,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
- name: gather build target facts
setup:
gather_subset: '!all:hardware'
delegate_to: "{{ item }}"
delegate_facts: true
with_items: "{{ groups['repo_all'] | default([inventory_hostname]) }}"
- name: Build the wheels on the build host
delegate_to: "{{ venv_build_host }}"
become: "{{ venv_build_host == 'localhost' }}"