Skip to content

Commit 6ab888b

Browse files
committed
Work CI-CD
- Split update task to allow initial batch to flow. (required as the 2nd batch requires the test framework) ***NO_CI***
1 parent 8aaf40a commit 6ab888b

File tree

1 file changed

+14
-3
lines changed

1 file changed

+14
-3
lines changed

azure-pipelines.yml

Lines changed: 14 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -169,13 +169,11 @@ jobs:
169169
nanoFramework.Device.OneWire
170170
nanoFramework.Runtime.Events
171171
nanoFramework.Runtime.Native
172-
nanoFramework.Logging
173-
nanoFramework.Networking.Sntp
174172
nanoFramework.Hardware.Stm32
175173
nanoFramework.Hardware.TI
174+
nanoFramework.Networking.Sntp
176175
nanoFramework.TI.EasyLink
177176
nanoFramework.ResourceManager
178-
nanoFramework.Json
179177
System.Collections
180178
System.Device.Adc
181179
System.Device.Dac
@@ -184,6 +182,19 @@ jobs:
184182
System.Device.Spi
185183
System.Math
186184
System.Text
185+
186+
# wait for 15min to allow the 1st batch to get updated
187+
# only if this wasn't triggered by the pipeline
188+
- powershell: Start-Sleep -Seconds (15*60)
189+
displayName: Wait for 15min
190+
condition: eq(variables['UPDATE_DEPENDENTS'], 'false')
191+
192+
# update dependents
193+
- template: azure-pipelines-templates/update-dependents.yml@templates
194+
parameters:
195+
repositoriesToUpdate: |
196+
nanoFramework.Logging
197+
nanoFramework.Json
187198
System.Threading
188199
189200
##################################

0 commit comments

Comments
 (0)