We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d5b64a8 commit 5fac194Copy full SHA for 5fac194
.github/workflows/rust.yml
@@ -94,6 +94,14 @@ jobs:
94
with:
95
path: /tmp/logs
96
name: tests-trace-${{ matrix.cgroups }}-${{ matrix.os }}
97
+ - uses: actions/upload-artifact@v1
98
+ if: always()
99
+ with:
100
+ path: /tmp/slirp_in.log
101
102
103
104
+ path: /tmp/slirp_out.log
105
106
nightly-checks:
107
runs-on: ubuntu-20.04
uml-ci/uml-slirp.sh
@@ -1,3 +1,3 @@
1
#!/bin/bash
2
3
-exec slirp-fullbolt 'host addr 10.0.2.2' 'redir tcp 2224 10.0.2.15:22'
+stdbuf -i 0 -o 0 tee /tmp/slirp_in.log | slirp-fullbolt 'host addr 10.0.2.2' 'redir tcp 2224 10.0.2.15:22' | stdbuf -i 0 -o 0 tee /tmp/slirp_out.log
0 commit comments