mirror of
https://github.com/moparisthebest/curl
synced 2024-11-17 06:55:02 -05:00
63583a0bb7
It also includes a few changes to get the builds going: - Added autoconf to common dependencies - Added automake to common dependencies - Added libtool to common dependencies - Added libssl-dev to common dependencies Co-authored-by: Albin Vass Closes #7245
13 lines
268 B
YAML
13 lines
268 B
YAML
---
|
|
- hosts: all
|
|
tasks:
|
|
- name: Pull down logs to executor
|
|
ignore_errors: True
|
|
synchronize:
|
|
src: "{{ zuul.project.src_dir }}/config.log"
|
|
dest: "{{ zuul.executor.log_root }}/config.log"
|
|
mode: pull
|
|
owner: false
|
|
group: false
|
|
...
|