diff options
| author | Ben Beltran <ben@nsovocal.com> | 2019-05-13 23:22:58 +0200 |
|---|---|---|
| committer | Ben Beltran <ben@nsovocal.com> | 2019-05-13 23:22:58 +0200 |
| commit | 6a628388c496987819ef26bda1a99595bce2b1d5 (patch) | |
| tree | f944ee31ac581d17074144f8f65cfdf4d4784171 /Scripts | |
| parent | 2cbb0a97eeb4eea8ef18d59346759b20cc8fa180 (diff) | |
Makes test environment docker-based
Provides Dockerfile to build test environment that should be used
by CI
Diffstat (limited to 'Scripts')
| -rwxr-xr-x | Scripts/install_sourcekitten.sh | 10 | ||||
| -rwxr-xr-x | Scripts/install_swiftlint.sh | 11 |
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 |