]> git.ipfire.org Git - thirdparty/pdns.git/commitdiff
Pipe the output of pip to cat, so it produces no procress bar which 8483/head
authorOtto Moerbeek <otto.moerbeek@open-xchange.com>
Mon, 28 Oct 2019 11:28:12 +0000 (12:28 +0100)
committerOtto Moerbeek <otto.moerbeek@open-xchange.com>
Tue, 29 Oct 2019 11:16:48 +0000 (12:16 +0100)
looks very ugly and just fills the logs in CircleCI.

regression-tests.api/runtests
regression-tests.auth-py/runtests
regression-tests.dnsdist/runtests
regression-tests.ixfrdist/runtests
regression-tests.recursor-dnssec/runtests

index 6574536d177b000c5580df65957f9f308383c0cc..56e5bf77b3bf763858e4a1dc29ad539256e6ed2a 100755 (executable)
@@ -15,7 +15,7 @@ if [ ! -d .venv ]; then
 fi
 . .venv/bin/activate
 python -V
-pip install -r requirements.txt
+pip install -r requirements.txt | cat
 
 if [ -z "${SDIG}" ]; then
   export SDIG=$(type -P sdig)
index 68797ebddc965805db0ee05be24f36d2e00f4c6e..6c30ba8c6634b2fe3d102732ef0dd1405d76a4aa 100755 (executable)
@@ -9,7 +9,7 @@ fi
 
 . .venv/bin/activate
 python -V
-pip install -q -r requirements.txt
+pip install -q -r requirements.txt | cat
 
 mkdir -p configs
 
index eb2fc9b4c174382c0e9f5b4aa13884df6abdaa7d..93543922c581364a9d7c3f3d8fccbccb771c30b7 100755 (executable)
@@ -29,7 +29,7 @@ then
     export CPPFLAGS=-I/usr/local/opt/openssl/include
   fi
 fi
-pip install -r requirements.txt
+pip install -r requirements.txt | cat
 
 protoc -I=../pdns/ --python_out=. ../pdns/dnsmessage.proto
 protoc -I=../pdns/ --python_out=. ../pdns/dnstap.proto
index 5a560a05d046512ea160ba0fdd71dcd4208c35a2..0bbf43915dd8432ba9392ab5acddeeb81b789de6 100755 (executable)
@@ -16,7 +16,7 @@ if [ ! -d .venv ]; then
 fi
 . .venv/bin/activate
 python -V
-pip install -r requirements.txt
+pip install -r requirements.txt | cat
 
 if [ -z "${IXFRDISTBIN}" ]; then
   IXFRDISTBIN=$(ls ../pdns/ixfrdist)
index 4f1a674a3cea9cb6211e35e3eb8a3df7f665db4f..b21a776e66fd773d153d5111756ab49fc97b5f12 100755 (executable)
@@ -7,8 +7,8 @@ if [ ! -d .venv ]; then
 fi
 . .venv/bin/activate
 python -V
-pip install -U pip
-pip install -r requirements.txt
+pip install -U pip | cat
+pip install -r requirements.txt | cat
 
 protoc -I=../pdns/ --python_out=. ../pdns/dnsmessage.proto
 protoc -I=../pdns/ --python_out=. ../pdns/dnstap.proto