Merge branch 'master' into patch-1
commit
8d3da2dbd2
@ -0,0 +1,35 @@
|
|||||||
|
#!/bin/bash
|
||||||
|
# workaround from https://stackoverflow.com/a/26082445 to handle Travis 4MB log limit
|
||||||
|
set -e
|
||||||
|
|
||||||
|
export PING_SLEEP=30s
|
||||||
|
export WORKDIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
|
||||||
|
export BUILD_OUTPUT=$WORKDIR/build.out
|
||||||
|
|
||||||
|
touch $BUILD_OUTPUT
|
||||||
|
|
||||||
|
dump_output() {
|
||||||
|
echo Tailing the last 1000 lines of output:
|
||||||
|
tail -1000 $BUILD_OUTPUT
|
||||||
|
}
|
||||||
|
error_handler() {
|
||||||
|
echo ERROR: An error was encountered with the build.
|
||||||
|
dump_output
|
||||||
|
kill $PING_LOOP_PID
|
||||||
|
exit 1
|
||||||
|
}
|
||||||
|
# If an error occurs, run our error handler to output a tail of the build
|
||||||
|
trap 'error_handler' ERR
|
||||||
|
|
||||||
|
# Set up a repeating loop to send some output to Travis.
|
||||||
|
|
||||||
|
bash -c "while true; do echo \$(date) - building ...; sleep $PING_SLEEP; done" &
|
||||||
|
PING_LOOP_PID=$!
|
||||||
|
|
||||||
|
.ci/${MODE}_tests.py >> $BUILD_OUTPUT 2>&1
|
||||||
|
|
||||||
|
# The build finished without returning an error so dump a tail of the output
|
||||||
|
dump_output
|
||||||
|
|
||||||
|
# nicely terminate the ping output loop
|
||||||
|
kill $PING_LOOP_PID
|
@ -1,12 +1,18 @@
|
|||||||
# Ensure paramiko connections aren't grabbed.
|
# Ensure paramiko connections aren't grabbed.
|
||||||
|
---
|
||||||
|
|
||||||
- name: integration/connection_loader/paramiko_unblemished.yml
|
- name: integration/connection_loader/paramiko_unblemished.yml
|
||||||
hosts: test-targets
|
hosts: test-targets
|
||||||
any_errors_fatal: true
|
any_errors_fatal: true
|
||||||
tasks:
|
tasks:
|
||||||
- custom_python_detect_environment:
|
- debug:
|
||||||
connection: paramiko
|
msg: "skipped for now"
|
||||||
register: out
|
- name: this is flaky -> https://github.com/dw/mitogen/issues/747
|
||||||
|
block:
|
||||||
|
- custom_python_detect_environment:
|
||||||
|
connection: paramiko
|
||||||
|
register: out
|
||||||
|
|
||||||
- assert:
|
- assert:
|
||||||
that: not out.mitogen_loaded
|
that: not out.mitogen_loaded
|
||||||
|
when: False
|
||||||
|
Loading…
Reference in New Issue