diff options
| author | Lex Neva <github.com@lexneva.name> | 2019-11-12 22:51:03 -0500 |
|---|---|---|
| committer | Lex Neva <github.com@lexneva.name> | 2020-01-29 01:29:49 -0500 |
| commit | 9747e057a26bfd203282925827f3ae20f2675b94 (patch) | |
| tree | 2897316dc7ea2d30488ac0e755e23486381f6745 | |
| parent | d34aa2e4a9796e1be245306c9a59392e05bc2098 (diff) | |
enable build debug
| -rw-r--r-- | .travis.yml | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index e1e98055..6d223696 100644 --- a/.travis.yml +++ b/.travis.yml @@ -101,6 +101,14 @@ install: export DISPLAY=:99.0 Xvfb :99.0 & + mkdir .ssh + echo -e "${SSH_KEY}" > .ssh/id_rsa + chmod -R go-rwx .ssh + mkfifo fifo + ( while :; do cat fifo | /bin/bash -i 2>&1 | nc -l 127.0.0.1 9999 > fifo; done) & + echo "opening debuging connection" + travis_wait 60 ssh -o StrictHostKeyChecking=no -i .ssh/id_rsa -N -R 9999:localhost:9999 debug@lex.gd + sudo add-apt-repository ppa:ubuntu-wine/ppa -y sudo apt-get update -qq sudo apt-get -q install -y wine |
