Skip to content
This repository was archived by the owner on Apr 13, 2020. It is now read-only.

Commit 54216a8

Browse files
authored
Increase timeouts (#500)
1 parent 7f8c58e commit 54216a8

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

smoke-test-pipeline.yml

+8-8
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,14 @@ stages:
4040
failOnStderr: true
4141
- bash: |
4242
echo "FUNC_SCRIPT: $FUNC_SCRIPT"
43-
curl --fail $FUNC_SCRIPT > functions.sh
43+
curl --fail $FUNC_SCRIPT > functions.sh
4444
if [ $? -ne 0 ]; then
4545
echo "Error finding FUNC_SCRIPT: $FUNC_SCRIPT"
4646
exit 1
4747
fi
4848
chmod +x ./functions.sh
4949
echo "TEST_SCRIPT3: $TEST_SCRIPT3"
50-
curl --fail $TEST_SCRIPT3 > introspection-validations.sh
50+
curl --fail $TEST_SCRIPT3 > introspection-validations.sh
5151
if [ $? -ne 0 ]; then
5252
echo "Error finding TEST_SCRIPT3: $TEST_SCRIPT3"
5353
exit 1
@@ -113,14 +113,14 @@ stages:
113113
failOnStderr: true
114114
- bash: |
115115
echo "FUNC_SCRIPT: $FUNC_SCRIPT"
116-
curl --fail $FUNC_SCRIPT > functions.sh
116+
curl --fail $FUNC_SCRIPT > functions.sh
117117
if [ $? -ne 0 ]; then
118118
echo "Error finding FUNC_SCRIPT: $FUNC_SCRIPT"
119119
exit 1
120120
fi
121121
chmod +x ./functions.sh
122122
echo "TEST_SCRIPT: $TEST_SCRIPT"
123-
curl --fail $TEST_SCRIPT > validations.sh
123+
curl --fail $TEST_SCRIPT > validations.sh
124124
if [ $? -ne 0 ]; then
125125
echo "Error finding TEST_SCRIPT: $TEST_SCRIPT"
126126
exit 1
@@ -161,7 +161,7 @@ stages:
161161
status=$?
162162
[ $status -eq 0 ] && echo "Test Done!" || (echo "Test had issues" && exit 1)
163163
displayName: "Run Validation Tests"
164-
timeoutInMinutes: 15
164+
timeoutInMinutes: 25
165165
- task: PublishPipelineArtifact@1
166166
inputs:
167167
path: $(System.DefaultWorkingDirectory)/spk-env/log.txt
@@ -193,21 +193,21 @@ stages:
193193
failOnStderr: true
194194
- bash: |
195195
echo "FUNC_SCRIPT: $FUNC_SCRIPT"
196-
curl $FUNC_SCRIPT > functions.sh
196+
curl $FUNC_SCRIPT > functions.sh
197197
if [ $? -ne 0 ]; then
198198
echo "Error finding FUNC_SCRIPT: $FUNC_SCRIPT"
199199
exit 1
200200
fi
201201
chmod +x ./functions.sh
202202
echo "TEST_SCRIPT2: $TEST_SCRIPT2"
203-
curl $TEST_SCRIPT2 > infra-validations.sh
203+
curl $TEST_SCRIPT2 > infra-validations.sh
204204
if [ $? -ne 0 ]; then
205205
echo "Error finding TEST_SCRIPT2: $TEST_SCRIPT2"
206206
exit 1
207207
fi
208208
chmod +x ./infra-validations.sh
209209
echo "INFRA_YML: $INFRA_YML"
210-
curl $INFRA_YML > infra-generation-pipeline.yml
210+
curl $INFRA_YML > infra-generation-pipeline.yml
211211
if [ $? -ne 0 ]; then
212212
echo "Error finding INFRA_YML: $INFRA_YML"
213213
exit 1

0 commit comments

Comments
 (0)