This is an automated email from the ASF dual-hosted git repository.
rabbah pushed a commit to branch master
in repository
https://gitbox.apache.org/repos/asf/incubator-openwhisk-runtime-swift.git
The following commit(s) were added to refs/heads/master by this push:
new fff4ef9 Remove the build of Swift 3.1.1 (#86)
fff4ef9 is described below
commit fff4ef92575a9948b8d5b6a24a75265a9a2931c0
Author: Vincent <[email protected]>
AuthorDate: Tue Oct 16 13:44:34 2018 -0400
Remove the build of Swift 3.1.1 (#86)
---
tests/build.gradle | 5 +++++
tools/travis/build.sh | 1 -
tools/travis/test.sh | 2 +-
3 files changed, 6 insertions(+), 2 deletions(-)
diff --git a/tests/build.gradle b/tests/build.gradle
index 1ae5a4b..b56d3ad 100644
--- a/tests/build.gradle
+++ b/tests/build.gradle
@@ -42,3 +42,8 @@ dependencies {
tasks.withType(ScalaCompile) {
scalaCompileOptions.additionalParameters = gradle.scala.compileFlags
}
+
+task testSwift4(type: Test) {
+ exclude 'runtime/sdk/Swift311**'
+ exclude 'runtime/actionContainers/Swift311**'
+}
diff --git a/tools/travis/build.sh b/tools/travis/build.sh
index 50d47a0..b8ac9ad 100755
--- a/tools/travis/build.sh
+++ b/tools/travis/build.sh
@@ -49,6 +49,5 @@ TERM=dumb ./gradlew install
# Build runtime
cd $ROOTDIR
TERM=dumb ./gradlew \
-:core:swift3.1.1Action:distDocker \
:core:swift41Action:distDocker \
-PdockerImagePrefix=${IMAGE_PREFIX}
diff --git a/tools/travis/test.sh b/tools/travis/test.sh
index a5b249d..5882ddf 100755
--- a/tools/travis/test.sh
+++ b/tools/travis/test.sh
@@ -27,4 +27,4 @@ WHISKDIR="$ROOTDIR/../openwhisk"
export OPENWHISK_HOME=$WHISKDIR
cd ${ROOTDIR}
TERM=dumb ./gradlew :tests:checkScalafmtAll
-TERM=dumb ./gradlew :tests:test
+TERM=dumb ./gradlew :tests:testSwift4