@@ -16,14 +16,11 @@ jobs:
16
16
env :
17
17
GITHUB_CONTEXT : ${{ toJson(github) }}
18
18
run : echo "$GITHUB_CONTEXT"
19
- - uses : actions/checkout@v2
19
+ - uses : actions/checkout@v2.2.0
20
20
with :
21
21
submodules : true
22
22
fetch-depth : 0
23
23
- run : git fetch --recurse-submodules=no https://github.com/adafruit/circuitpython refs/tags/*:refs/tags/*
24
- - run : git submodule sync
25
- - run : git submodule foreach git remote -v
26
- - run : git submodule foreach git fetch --recurse-submodules=no origin +refs/tags/*:refs/tags/*
27
24
- name : CircuitPython version
28
25
run : git describe --dirty --tags
29
26
- name : Set up Python 3.8
66
63
working-directory : tests
67
64
- name : Stubs
68
65
run : make stubs -j2
66
+ - uses : actions/upload-artifact@v2
67
+ with :
68
+ name : stubs
69
+ path : circuitpython-stubs*
69
70
- name : Docs
70
71
run : sphinx-build -E -W -b html . _build/html
72
+ - uses : actions/upload-artifact@v2
73
+ with :
74
+ name : docs
75
+ path : _build/html
71
76
- name : Translations
72
77
run : make check-translate
73
78
- name : New boards check
@@ -112,14 +117,11 @@ jobs:
112
117
gcc --version
113
118
python3 --version
114
119
msgfmt --version
115
- - uses : actions/checkout@v2
120
+ - uses : actions/checkout@v2.2.0
116
121
with :
117
122
submodules : true
118
123
fetch-depth : 0
119
124
- run : git fetch --recurse-submodules=no https://github.com/adafruit/circuitpython refs/tags/*:refs/tags/*
120
- - run : git submodule sync
121
- - run : git submodule foreach git remote -v
122
- - run : git submodule foreach git fetch --recurse-submodules=no origin +refs/tags/*:refs/tags/*
123
125
- name : CircuitPython version
124
126
run : git describe --dirty --tags
125
127
- name : Build mpy-cross
@@ -207,6 +209,7 @@ jobs:
207
209
- " monster_m4sk"
208
210
- " ndgarage_ndbit6"
209
211
- " nfc_copy_cat"
212
+ - " nice_nano"
210
213
- " nucleo_f746zg"
211
214
- " nucleo_f767zi"
212
215
- " nucleo_h743zi_2"
@@ -287,14 +290,11 @@ jobs:
287
290
gcc --version
288
291
arm-none-eabi-gcc --version
289
292
python3 --version
290
- - uses : actions/checkout@v2
293
+ - uses : actions/checkout@v2.2.0
291
294
with :
292
295
submodules : true
293
296
fetch-depth : 0
294
297
- run : git fetch --recurse-submodules=no https://github.com/adafruit/circuitpython refs/tags/*:refs/tags/*
295
- - run : git submodule sync
296
- - run : git submodule foreach git remote -v
297
- - run : git submodule foreach git fetch --recurse-submodules=no origin +refs/tags/*:refs/tags/*
298
298
- name : mpy-cross
299
299
run : make -C mpy-cross -j2
300
300
- name : build
@@ -338,14 +338,11 @@ jobs:
338
338
gcc --version
339
339
riscv64-unknown-elf-gcc --version
340
340
python3 --version
341
- - uses : actions/checkout@v2
341
+ - uses : actions/checkout@v2.2.0
342
342
with :
343
343
submodules : true
344
344
fetch-depth : 0
345
345
- run : git fetch --recurse-submodules=no https://github.com/adafruit/circuitpython refs/tags/*:refs/tags/*
346
- - run : git submodule sync
347
- - run : git submodule foreach git remote -v
348
- - run : git submodule foreach git fetch --recurse-submodules=no origin +refs/tags/*:refs/tags/*
349
346
- name : mpy-cross
350
347
run : make -C mpy-cross -j2
351
348
- name : build
@@ -378,14 +375,11 @@ jobs:
378
375
uses : actions/setup-python@v1
379
376
with :
380
377
python-version : 3.8
381
- - uses : actions/checkout@v2
378
+ - uses : actions/checkout@v2.2.0
382
379
with :
383
380
submodules : true
384
381
fetch-depth : 0
385
382
- run : git fetch --recurse-submodules=no https://github.com/adafruit/circuitpython refs/tags/*:refs/tags/*
386
- - run : git submodule sync
387
- - run : git submodule foreach git remote -v
388
- - run : git submodule foreach git fetch --recurse-submodules=no origin +refs/tags/*:refs/tags/*
389
383
- name : CircuitPython version
390
384
run : git describe --dirty --tags
391
385
- uses : actions/cache@v1
0 commit comments