From b4a51fe017d08014f77f4caccc04614ae3fceaac Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Fri, 29 Mar 2019 17:05:04 -0400 Subject: [PATCH] CI: remove unused script --- ci/buildall.sh | 19 ------------------- 1 file changed, 19 deletions(-) delete mode 100755 ci/buildall.sh diff --git a/ci/buildall.sh b/ci/buildall.sh deleted file mode 100755 index f9fe7adc7..000000000 --- a/ci/buildall.sh +++ /dev/null @@ -1,19 +0,0 @@ -#!/bin/bash - -rm -Rf "$WORKSPACE/prefix" -mkdir "$WORKSPACE/prefix" - -git clone git://anongit.kde.org/kpmcore "$WORKSPACE/kpmcore" -cd "$WORKSPACE/kpmcore" -mkdir "$WORKSPACE/kpmcore/build" -cd "$WORKSPACE/kpmcore/build" -cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/usr .. -nice -n 18 make -j2 -make DESTDIR="$WORKSPACE/prefix" install - -rm -Rf "$WORKSPACE/build" -mkdir "$WORKSPACE/build" -cd "$WORKSPACE/build" - -CMAKE_PREFIX_PATH="$WORKSPACE/prefix/usr" cmake -DCMAKE_BUILD_TYPE=Debug -DCMAKE_INSTALL_PREFIX=/usr -DWEBVIEW_FORCE_WEBKIT=1 .. -nice -n 18 make -j2