From 6a628388c496987819ef26bda1a99595bce2b1d5 Mon Sep 17 00:00:00 2001 From: Ben Beltran Date: Mon, 13 May 2019 23:22:58 +0200 Subject: Makes test environment docker-based Provides Dockerfile to build test environment that should be used by CI --- Scripts/install_sourcekitten.sh | 10 ---------- Scripts/install_swiftlint.sh | 11 ----------- 2 files changed, 21 deletions(-) delete mode 100755 Scripts/install_sourcekitten.sh delete mode 100755 Scripts/install_swiftlint.sh (limited to 'Scripts') diff --git a/Scripts/install_sourcekitten.sh b/Scripts/install_sourcekitten.sh deleted file mode 100755 index f94fb53..0000000 --- a/Scripts/install_sourcekitten.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/bin/bash - -# Installs SourceKitten from source (Intended to be used with -# swift docker image) - -set -e - -git clone https://github.com/jpsim/SourceKitten.git /tmp/SourceKitten && -cd /tmp/SourceKitten && -make install diff --git a/Scripts/install_swiftlint.sh b/Scripts/install_swiftlint.sh deleted file mode 100755 index 4b8299d..0000000 --- a/Scripts/install_swiftlint.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/bin/bash - -# Installs SwiftLint from source (Intended to be used with -# swift docker image) - -set -e - -git clone https://github.com/realm/SwiftLint.git /tmp/SwiftLint && -cd /tmp/SwiftLint && -git submodule update --init --recursive && -make install -- cgit