@@ -40,14 +40,14 @@ stages:
40
40
failOnStderr: true
41
41
- bash : |
42
42
echo "FUNC_SCRIPT: $FUNC_SCRIPT"
43
- curl --fail $FUNC_SCRIPT > functions.sh
43
+ curl --fail $FUNC_SCRIPT > functions.sh
44
44
if [ $? -ne 0 ]; then
45
45
echo "Error finding FUNC_SCRIPT: $FUNC_SCRIPT"
46
46
exit 1
47
47
fi
48
48
chmod +x ./functions.sh
49
49
echo "TEST_SCRIPT3: $TEST_SCRIPT3"
50
- curl --fail $TEST_SCRIPT3 > introspection-validations.sh
50
+ curl --fail $TEST_SCRIPT3 > introspection-validations.sh
51
51
if [ $? -ne 0 ]; then
52
52
echo "Error finding TEST_SCRIPT3: $TEST_SCRIPT3"
53
53
exit 1
@@ -113,14 +113,14 @@ stages:
113
113
failOnStderr: true
114
114
- bash : |
115
115
echo "FUNC_SCRIPT: $FUNC_SCRIPT"
116
- curl --fail $FUNC_SCRIPT > functions.sh
116
+ curl --fail $FUNC_SCRIPT > functions.sh
117
117
if [ $? -ne 0 ]; then
118
118
echo "Error finding FUNC_SCRIPT: $FUNC_SCRIPT"
119
119
exit 1
120
120
fi
121
121
chmod +x ./functions.sh
122
122
echo "TEST_SCRIPT: $TEST_SCRIPT"
123
- curl --fail $TEST_SCRIPT > validations.sh
123
+ curl --fail $TEST_SCRIPT > validations.sh
124
124
if [ $? -ne 0 ]; then
125
125
echo "Error finding TEST_SCRIPT: $TEST_SCRIPT"
126
126
exit 1
@@ -161,7 +161,7 @@ stages:
161
161
status=$?
162
162
[ $status -eq 0 ] && echo "Test Done!" || (echo "Test had issues" && exit 1)
163
163
displayName: "Run Validation Tests"
164
- timeoutInMinutes: 15
164
+ timeoutInMinutes: 25
165
165
- task : PublishPipelineArtifact@1
166
166
inputs :
167
167
path : $(System.DefaultWorkingDirectory)/spk-env/log.txt
@@ -193,21 +193,21 @@ stages:
193
193
failOnStderr: true
194
194
- bash : |
195
195
echo "FUNC_SCRIPT: $FUNC_SCRIPT"
196
- curl $FUNC_SCRIPT > functions.sh
196
+ curl $FUNC_SCRIPT > functions.sh
197
197
if [ $? -ne 0 ]; then
198
198
echo "Error finding FUNC_SCRIPT: $FUNC_SCRIPT"
199
199
exit 1
200
200
fi
201
201
chmod +x ./functions.sh
202
202
echo "TEST_SCRIPT2: $TEST_SCRIPT2"
203
- curl $TEST_SCRIPT2 > infra-validations.sh
203
+ curl $TEST_SCRIPT2 > infra-validations.sh
204
204
if [ $? -ne 0 ]; then
205
205
echo "Error finding TEST_SCRIPT2: $TEST_SCRIPT2"
206
206
exit 1
207
207
fi
208
208
chmod +x ./infra-validations.sh
209
209
echo "INFRA_YML: $INFRA_YML"
210
- curl $INFRA_YML > infra-generation-pipeline.yml
210
+ curl $INFRA_YML > infra-generation-pipeline.yml
211
211
if [ $? -ne 0 ]; then
212
212
echo "Error finding INFRA_YML: $INFRA_YML"
213
213
exit 1
0 commit comments