├── .asf.yaml ├── .gitattributes ├── .github ├── ISSUE_TEMPLATE.md └── workflows │ └── ci.yaml ├── .gitignore ├── .scalafmt.conf ├── CONTRIBUTING.md ├── LICENSE.txt ├── NOTICE.txt ├── README.md ├── ansible └── files │ └── runtimes.json ├── core ├── swift51Action │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── Package.swift │ ├── _Whisk.swift │ ├── build.gradle │ ├── main.swift │ ├── swiftbuild.py │ ├── swiftbuild.py.launcher.swift │ └── swiftbuildandlink.sh ├── swift53Action │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── Package.swift │ ├── _Whisk.swift │ ├── build.gradle │ ├── main.swift │ ├── swiftbuild.py │ ├── swiftbuild.py.launcher.swift │ └── swiftbuildandlink.sh ├── swift54Action │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── Package.swift │ ├── _Whisk.swift │ ├── build.gradle │ ├── main.swift │ ├── swiftbuild.py │ ├── swiftbuild.py.launcher.swift │ └── swiftbuildandlink.sh └── swift57Action │ ├── CHANGELOG.md │ ├── Dockerfile │ ├── Package.swift │ ├── _Whisk.swift │ ├── build.gradle │ ├── main.swift │ ├── swiftbuild.py │ ├── swiftbuild.py.launcher.swift │ └── swiftbuildandlink.sh ├── examples ├── swift-async-main-single │ ├── Makefile │ └── main.swift ├── swift-async-main-zip │ ├── HelloSwift5 │ │ ├── Package.swift │ │ └── Sources │ │ │ └── main.swift │ └── Makefile ├── swift-main-single │ ├── Makefile │ └── main.swift └── swift-main-zip │ ├── HelloSwift4 │ ├── Package.swift │ └── Sources │ │ └── main.swift │ └── Makefile ├── gradle ├── README.md ├── docker.gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── settings.gradle ├── tests ├── build.gradle ├── dat │ ├── actions │ │ ├── HelloSwift5 │ │ │ ├── Package.swift │ │ │ └── Sources │ │ │ │ └── main.swift │ │ ├── HelloSwift5Codable │ │ │ ├── Package.swift │ │ │ └── Sources │ │ │ │ └── main.swift │ │ ├── Makefile │ │ ├── SwiftyRequest │ │ │ ├── Package.resolved │ │ │ ├── Package.swift │ │ │ └── Sources │ │ │ │ └── main.swift │ │ ├── SwiftyRequest5 │ │ │ ├── Package.swift │ │ │ └── Sources │ │ │ │ └── main.swift │ │ ├── SwiftyRequestAsyncCodable57 │ │ │ ├── Package.resolved │ │ │ ├── Package.swift │ │ │ └── Sources │ │ │ │ └── main.swift │ │ ├── SwiftyRequestCodable │ │ │ ├── Package.swift │ │ │ └── Sources │ │ │ │ └── main.swift │ │ ├── SwiftyRequestCodable5 │ │ │ ├── Package.swift │ │ │ └── Sources │ │ │ │ └── main.swift │ │ └── sdk │ │ │ ├── swift4 │ │ │ ├── createRule.swift │ │ │ ├── createTrigger.swift │ │ │ ├── hello.swift │ │ │ ├── invoke.swift │ │ │ ├── invokeNonBlocking.swift │ │ │ └── trigger.swift │ │ │ └── swift5 │ │ │ ├── createRule.swift │ │ │ ├── createTrigger.swift │ │ │ ├── hello.swift │ │ │ ├── invoke.swift │ │ │ ├── invokeNonBlocking.swift │ │ │ └── trigger.swift │ └── build.sh ├── src │ └── test │ │ ├── resources │ │ └── application.conf │ │ └── scala │ │ └── runtime │ │ ├── actionContainers │ │ ├── Swift51ActionContainerTests.scala │ │ ├── Swift51CodableActionContainerTests.scala │ │ ├── Swift53ActionContainerTests.scala │ │ ├── Swift53CodableActionContainerTests.scala │ │ ├── Swift54ActionContainerTests.scala │ │ ├── Swift54CodableActionContainerTests.scala │ │ ├── Swift57ActionContainerTests.scala │ │ ├── Swift57CodableActionContainerTests.scala │ │ ├── SwiftActionContainerTests.scala │ │ └── SwiftCodableActionContainerTests.scala │ │ └── sdk │ │ ├── Swift51SDKTests.scala │ │ ├── Swift53SDKTests.scala │ │ ├── Swift54SDKTests.scala │ │ ├── Swift57SDKTests.scala │ │ └── SwiftSDKTests.scala └── tests │ └── dat └── tools └── build └── compile5.sh /.asf.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/.asf.yaml -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/.github/workflows/ci.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/.gitignore -------------------------------------------------------------------------------- /.scalafmt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/.scalafmt.conf -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/README.md -------------------------------------------------------------------------------- /ansible/files/runtimes.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/ansible/files/runtimes.json -------------------------------------------------------------------------------- /core/swift51Action/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift51Action/CHANGELOG.md -------------------------------------------------------------------------------- /core/swift51Action/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift51Action/Dockerfile -------------------------------------------------------------------------------- /core/swift51Action/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift51Action/Package.swift -------------------------------------------------------------------------------- /core/swift51Action/_Whisk.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift51Action/_Whisk.swift -------------------------------------------------------------------------------- /core/swift51Action/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift51Action/build.gradle -------------------------------------------------------------------------------- /core/swift51Action/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift51Action/main.swift -------------------------------------------------------------------------------- /core/swift51Action/swiftbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift51Action/swiftbuild.py -------------------------------------------------------------------------------- /core/swift51Action/swiftbuild.py.launcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift51Action/swiftbuild.py.launcher.swift -------------------------------------------------------------------------------- /core/swift51Action/swiftbuildandlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift51Action/swiftbuildandlink.sh -------------------------------------------------------------------------------- /core/swift53Action/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift53Action/CHANGELOG.md -------------------------------------------------------------------------------- /core/swift53Action/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift53Action/Dockerfile -------------------------------------------------------------------------------- /core/swift53Action/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift53Action/Package.swift -------------------------------------------------------------------------------- /core/swift53Action/_Whisk.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift53Action/_Whisk.swift -------------------------------------------------------------------------------- /core/swift53Action/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift53Action/build.gradle -------------------------------------------------------------------------------- /core/swift53Action/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift53Action/main.swift -------------------------------------------------------------------------------- /core/swift53Action/swiftbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift53Action/swiftbuild.py -------------------------------------------------------------------------------- /core/swift53Action/swiftbuild.py.launcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift53Action/swiftbuild.py.launcher.swift -------------------------------------------------------------------------------- /core/swift53Action/swiftbuildandlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift53Action/swiftbuildandlink.sh -------------------------------------------------------------------------------- /core/swift54Action/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift54Action/CHANGELOG.md -------------------------------------------------------------------------------- /core/swift54Action/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift54Action/Dockerfile -------------------------------------------------------------------------------- /core/swift54Action/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift54Action/Package.swift -------------------------------------------------------------------------------- /core/swift54Action/_Whisk.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift54Action/_Whisk.swift -------------------------------------------------------------------------------- /core/swift54Action/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift54Action/build.gradle -------------------------------------------------------------------------------- /core/swift54Action/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift54Action/main.swift -------------------------------------------------------------------------------- /core/swift54Action/swiftbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift54Action/swiftbuild.py -------------------------------------------------------------------------------- /core/swift54Action/swiftbuild.py.launcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift54Action/swiftbuild.py.launcher.swift -------------------------------------------------------------------------------- /core/swift54Action/swiftbuildandlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift54Action/swiftbuildandlink.sh -------------------------------------------------------------------------------- /core/swift57Action/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift57Action/CHANGELOG.md -------------------------------------------------------------------------------- /core/swift57Action/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift57Action/Dockerfile -------------------------------------------------------------------------------- /core/swift57Action/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift57Action/Package.swift -------------------------------------------------------------------------------- /core/swift57Action/_Whisk.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift57Action/_Whisk.swift -------------------------------------------------------------------------------- /core/swift57Action/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift57Action/build.gradle -------------------------------------------------------------------------------- /core/swift57Action/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift57Action/main.swift -------------------------------------------------------------------------------- /core/swift57Action/swiftbuild.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift57Action/swiftbuild.py -------------------------------------------------------------------------------- /core/swift57Action/swiftbuild.py.launcher.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift57Action/swiftbuild.py.launcher.swift -------------------------------------------------------------------------------- /core/swift57Action/swiftbuildandlink.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/core/swift57Action/swiftbuildandlink.sh -------------------------------------------------------------------------------- /examples/swift-async-main-single/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/examples/swift-async-main-single/Makefile -------------------------------------------------------------------------------- /examples/swift-async-main-single/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/examples/swift-async-main-single/main.swift -------------------------------------------------------------------------------- /examples/swift-async-main-zip/HelloSwift5/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/examples/swift-async-main-zip/HelloSwift5/Package.swift -------------------------------------------------------------------------------- /examples/swift-async-main-zip/HelloSwift5/Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/examples/swift-async-main-zip/HelloSwift5/Sources/main.swift -------------------------------------------------------------------------------- /examples/swift-async-main-zip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/examples/swift-async-main-zip/Makefile -------------------------------------------------------------------------------- /examples/swift-main-single/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/examples/swift-main-single/Makefile -------------------------------------------------------------------------------- /examples/swift-main-single/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/examples/swift-main-single/main.swift -------------------------------------------------------------------------------- /examples/swift-main-zip/HelloSwift4/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/examples/swift-main-zip/HelloSwift4/Package.swift -------------------------------------------------------------------------------- /examples/swift-main-zip/HelloSwift4/Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/examples/swift-main-zip/HelloSwift4/Sources/main.swift -------------------------------------------------------------------------------- /examples/swift-main-zip/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/examples/swift-main-zip/Makefile -------------------------------------------------------------------------------- /gradle/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/gradle/README.md -------------------------------------------------------------------------------- /gradle/docker.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/gradle/docker.gradle -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/gradlew.bat -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/settings.gradle -------------------------------------------------------------------------------- /tests/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/build.gradle -------------------------------------------------------------------------------- /tests/dat/actions/HelloSwift5/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/HelloSwift5/Package.swift -------------------------------------------------------------------------------- /tests/dat/actions/HelloSwift5/Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/HelloSwift5/Sources/main.swift -------------------------------------------------------------------------------- /tests/dat/actions/HelloSwift5Codable/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/HelloSwift5Codable/Package.swift -------------------------------------------------------------------------------- /tests/dat/actions/HelloSwift5Codable/Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/HelloSwift5Codable/Sources/main.swift -------------------------------------------------------------------------------- /tests/dat/actions/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/Makefile -------------------------------------------------------------------------------- /tests/dat/actions/SwiftyRequest/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/SwiftyRequest/Package.resolved -------------------------------------------------------------------------------- /tests/dat/actions/SwiftyRequest/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/SwiftyRequest/Package.swift -------------------------------------------------------------------------------- /tests/dat/actions/SwiftyRequest/Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/SwiftyRequest/Sources/main.swift -------------------------------------------------------------------------------- /tests/dat/actions/SwiftyRequest5/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/SwiftyRequest5/Package.swift -------------------------------------------------------------------------------- /tests/dat/actions/SwiftyRequest5/Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/SwiftyRequest5/Sources/main.swift -------------------------------------------------------------------------------- /tests/dat/actions/SwiftyRequestAsyncCodable57/Package.resolved: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/SwiftyRequestAsyncCodable57/Package.resolved -------------------------------------------------------------------------------- /tests/dat/actions/SwiftyRequestAsyncCodable57/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/SwiftyRequestAsyncCodable57/Package.swift -------------------------------------------------------------------------------- /tests/dat/actions/SwiftyRequestAsyncCodable57/Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/SwiftyRequestAsyncCodable57/Sources/main.swift -------------------------------------------------------------------------------- /tests/dat/actions/SwiftyRequestCodable/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/SwiftyRequestCodable/Package.swift -------------------------------------------------------------------------------- /tests/dat/actions/SwiftyRequestCodable/Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/SwiftyRequestCodable/Sources/main.swift -------------------------------------------------------------------------------- /tests/dat/actions/SwiftyRequestCodable5/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/SwiftyRequestCodable5/Package.swift -------------------------------------------------------------------------------- /tests/dat/actions/SwiftyRequestCodable5/Sources/main.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/SwiftyRequestCodable5/Sources/main.swift -------------------------------------------------------------------------------- /tests/dat/actions/sdk/swift4/createRule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/sdk/swift4/createRule.swift -------------------------------------------------------------------------------- /tests/dat/actions/sdk/swift4/createTrigger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/sdk/swift4/createTrigger.swift -------------------------------------------------------------------------------- /tests/dat/actions/sdk/swift4/hello.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/sdk/swift4/hello.swift -------------------------------------------------------------------------------- /tests/dat/actions/sdk/swift4/invoke.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/sdk/swift4/invoke.swift -------------------------------------------------------------------------------- /tests/dat/actions/sdk/swift4/invokeNonBlocking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/sdk/swift4/invokeNonBlocking.swift -------------------------------------------------------------------------------- /tests/dat/actions/sdk/swift4/trigger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/sdk/swift4/trigger.swift -------------------------------------------------------------------------------- /tests/dat/actions/sdk/swift5/createRule.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/sdk/swift5/createRule.swift -------------------------------------------------------------------------------- /tests/dat/actions/sdk/swift5/createTrigger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/sdk/swift5/createTrigger.swift -------------------------------------------------------------------------------- /tests/dat/actions/sdk/swift5/hello.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/sdk/swift5/hello.swift -------------------------------------------------------------------------------- /tests/dat/actions/sdk/swift5/invoke.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/sdk/swift5/invoke.swift -------------------------------------------------------------------------------- /tests/dat/actions/sdk/swift5/invokeNonBlocking.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/sdk/swift5/invokeNonBlocking.swift -------------------------------------------------------------------------------- /tests/dat/actions/sdk/swift5/trigger.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/actions/sdk/swift5/trigger.swift -------------------------------------------------------------------------------- /tests/dat/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/dat/build.sh -------------------------------------------------------------------------------- /tests/src/test/resources/application.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/src/test/resources/application.conf -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/Swift51ActionContainerTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/src/test/scala/runtime/actionContainers/Swift51ActionContainerTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/Swift51CodableActionContainerTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/src/test/scala/runtime/actionContainers/Swift51CodableActionContainerTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/Swift53ActionContainerTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/src/test/scala/runtime/actionContainers/Swift53ActionContainerTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/Swift53CodableActionContainerTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/src/test/scala/runtime/actionContainers/Swift53CodableActionContainerTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/Swift54ActionContainerTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/src/test/scala/runtime/actionContainers/Swift54ActionContainerTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/Swift54CodableActionContainerTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/src/test/scala/runtime/actionContainers/Swift54CodableActionContainerTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/Swift57ActionContainerTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/src/test/scala/runtime/actionContainers/Swift57ActionContainerTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/Swift57CodableActionContainerTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/src/test/scala/runtime/actionContainers/Swift57CodableActionContainerTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/SwiftActionContainerTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/src/test/scala/runtime/actionContainers/SwiftActionContainerTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/actionContainers/SwiftCodableActionContainerTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/src/test/scala/runtime/actionContainers/SwiftCodableActionContainerTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/sdk/Swift51SDKTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/src/test/scala/runtime/sdk/Swift51SDKTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/sdk/Swift53SDKTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/src/test/scala/runtime/sdk/Swift53SDKTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/sdk/Swift54SDKTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/src/test/scala/runtime/sdk/Swift54SDKTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/sdk/Swift57SDKTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/src/test/scala/runtime/sdk/Swift57SDKTests.scala -------------------------------------------------------------------------------- /tests/src/test/scala/runtime/sdk/SwiftSDKTests.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tests/src/test/scala/runtime/sdk/SwiftSDKTests.scala -------------------------------------------------------------------------------- /tests/tests/dat: -------------------------------------------------------------------------------- 1 | ../dat -------------------------------------------------------------------------------- /tools/build/compile5.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/apache/openwhisk-runtime-swift/HEAD/tools/build/compile5.sh --------------------------------------------------------------------------------