aboutsummaryrefslogtreecommitdiff
path: root/Scripts
diff options
context:
space:
mode:
authorBen Beltran <ben@nsovocal.com>2019-05-13 23:22:58 +0200
committerBen Beltran <ben@nsovocal.com>2019-05-13 23:22:58 +0200
commit6a628388c496987819ef26bda1a99595bce2b1d5 (patch)
treef944ee31ac581d17074144f8f65cfdf4d4784171 /Scripts
parent2cbb0a97eeb4eea8ef18d59346759b20cc8fa180 (diff)
Makes test environment docker-based
Provides Dockerfile to build test environment that should be used by CI
Diffstat (limited to 'Scripts')
-rwxr-xr-xScripts/install_sourcekitten.sh10
-rwxr-xr-xScripts/install_swiftlint.sh11
2 files changed, 0 insertions, 21 deletions
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