From f161f6c4dc6b40a3a82fc2d318a914afbcbb7f71 Mon Sep 17 00:00:00 2001 From: William Cheng Date: Mon, 15 Jun 2020 11:24:46 +0800 Subject: [PATCH 1/3] update bitrise config --- CI/bitrise.yml | 22 ++++++---------------- 1 file changed, 6 insertions(+), 16 deletions(-) diff --git a/CI/bitrise.yml b/CI/bitrise.yml index 73d2e2b29a3c..631f4604c2dd 100644 --- a/CI/bitrise.yml +++ b/CI/bitrise.yml @@ -14,23 +14,23 @@ workflows: - brew-install@0.10.2: inputs: - packages: maven - - script@1.1.5: + - script@1.1.6: title: Install Cocoapods inputs: - content: | #!/usr/bin/env bash sudo gem install cocoapods - - script@1.1.5: + - script@1.1.6: inputs: - content: | #!/usr/bin/env bash set -e - mvn --no-snapshot-updates package -Dorg.slf4j.simpleLogger.defaultLogLevel=error + mvn package -Dorg.slf4j.simpleLogger.defaultLogLevel=error title: Build openapi-generator - - script@1.1.5: + - script@1.1.6: title: Update Swift samples inputs: - content: | @@ -38,8 +38,8 @@ workflows: set -e - sh bin/generate-samples.sh bin/configs/swift5-*.yaml - - script@1.1.5: + #sh bin/swift5-all.sh + - script@1.1.6: title: Run Swift5 tests inputs: - content: | @@ -48,14 +48,4 @@ workflows: set -e ./samples/client/test/swift5/swift5_test_all.sh -# comment out the following as it's causing timeout -# - script@1.1.5: -# title: Run all bin scripts -# inputs: -# - content: |- -# #!/usr/bin/env bash -# -# set -e -# -# ./bin/run-all-petstore From 64a77613a8d56bf0a2396f254d618a642396eec4 Mon Sep 17 00:00:00 2001 From: William Cheng Date: Mon, 15 Jun 2020 14:39:24 +0800 Subject: [PATCH 2/3] update bitrise.yml --- CI/bitrise.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CI/bitrise.yml b/CI/bitrise.yml index 631f4604c2dd..7134cbd5c90e 100644 --- a/CI/bitrise.yml +++ b/CI/bitrise.yml @@ -38,7 +38,7 @@ workflows: set -e - #sh bin/swift5-all.sh + bin/generate-samples.sh ./bin/configs/other/swift5-* - script@1.1.6: title: Run Swift5 tests inputs: From 1d1dea39ff4bd3469cbb168c3df2907591520288 Mon Sep 17 00:00:00 2001 From: William Cheng Date: Mon, 15 Jun 2020 15:47:54 +0800 Subject: [PATCH 3/3] add back --no-snapshot-updates --- CI/bitrise.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CI/bitrise.yml b/CI/bitrise.yml index 7134cbd5c90e..9cd052310171 100644 --- a/CI/bitrise.yml +++ b/CI/bitrise.yml @@ -28,7 +28,7 @@ workflows: set -e - mvn package -Dorg.slf4j.simpleLogger.defaultLogLevel=error + mvn --no-snapshot-updates package -Dorg.slf4j.simpleLogger.defaultLogLevel=error title: Build openapi-generator - script@1.1.6: title: Update Swift samples