From c44a0e3fe7cade39db3d5356185d9d29f23efb03 Mon Sep 17 00:00:00 2001 From: Clayton Groeneveld Date: Sat, 22 Feb 2020 19:12:02 -0600 Subject: [PATCH] CI: Remove unused Linux script --- CI/install-dependencies-linux-ubuntu16.sh | 59 ----------------------- 1 file changed, 59 deletions(-) delete mode 100755 CI/install-dependencies-linux-ubuntu16.sh diff --git a/CI/install-dependencies-linux-ubuntu16.sh b/CI/install-dependencies-linux-ubuntu16.sh deleted file mode 100755 index 52e8d226..00000000 --- a/CI/install-dependencies-linux-ubuntu16.sh +++ /dev/null @@ -1,59 +0,0 @@ -#!/bin/sh -set -ex - -sudo apt-get -qq update -sudo apt-get install -y \ - build-essential \ - checkinstall \ - cmake \ - libasound2-dev \ - libavcodec-dev \ - libavdevice-dev \ - libavfilter-dev \ - libavformat-dev \ - libavutil-dev \ - libcurl4-openssl-dev \ - libfdk-aac-dev \ - libfontconfig-dev \ - libfreetype6-dev \ - libgl1-mesa-dev \ - libjack-jackd2-dev \ - libjansson-dev \ - libluajit-5.1-dev \ - libpulse-dev \ - libqt5x11extras5-dev \ - libspeexdsp-dev \ - libswresample-dev \ - libswscale-dev \ - libudev-dev \ - libv4l-dev \ - libvlc-dev \ - libx11-dev \ - libx264-dev \ - libxcb-randr0-dev \ - libxcb-shm0-dev \ - libxcb-xinerama0-dev \ - libxcomposite-dev \ - libxinerama-dev \ - pkg-config \ - python3-dev \ - qtbase5-dev \ - libqt5svg5-dev \ - swig - - -# build mbedTLS -cd ~/projects -mkdir mbedtls -cd mbedtls -mbedtlsPath=$PWD -curl -L -O https://github.com/ARMmbed/mbedtls/archive/mbedtls-2.12.0.tar.gz -tar -xf mbedtls-2.12.0.tar.gz -mkdir build -cd ./build -cmake -DENABLE_TESTING=Off -DUSE_SHARED_MBEDTLS_LIBRARY=On ../mbedtls-mbedtls-2.12.0 -make -j 12 -sudo make install - -# return to OBS build dir -cd $APPVEYOR_BUILD_FOLDER -- GitLab