@@ -132,15 +132,6 @@ jobs:
132
132
env :
133
133
GITHUB_CONTEXT : ${{ toJson(github) }}
134
134
run : echo "$GITHUB_CONTEXT"
135
- - name : Install dependencies
136
- run : |
137
- brew install gettext
138
- echo >>$GITHUB_PATH /usr/local/opt/gettext/bin
139
- - name : Versions
140
- run : |
141
- gcc --version
142
- python3 --version
143
- msgfmt --version
144
135
145
136
with :
146
137
submodules : true
@@ -150,6 +141,15 @@ jobs:
150
141
run : |
151
142
git describe --dirty --tags
152
143
echo >>$GITHUB_ENV CP_VERSION=$(git describe --dirty --tags)
144
+ - name : Install dependencies
145
+ run : |
146
+ brew install gettext
147
+ echo >>$GITHUB_PATH /usr/local/opt/gettext/bin
148
+ - name : Versions
149
+ run : |
150
+ gcc --version
151
+ python3 --version
152
+ msgfmt --version
153
153
- name : Build mpy-cross
154
154
run : make -C mpy-cross -j2
155
155
- uses : actions/upload-artifact@v2
@@ -355,6 +355,11 @@ jobs:
355
355
uses : actions/setup-python@v1
356
356
with :
357
357
python-version : 3.8
358
+
359
+ with :
360
+ submodules : true
361
+ fetch-depth : 0
362
+ - run : git fetch --recurse-submodules=no https://github.com/adafruit/circuitpython refs/tags/*:refs/tags/*
358
363
- name : Install deps
359
364
run : |
360
365
sudo apt-get install -y gettext
@@ -366,11 +371,6 @@ jobs:
366
371
gcc --version
367
372
arm-none-eabi-gcc --version
368
373
python3 --version
369
-
370
- with :
371
- submodules : true
372
- fetch-depth : 0
373
- - run : git fetch --recurse-submodules=no https://github.com/adafruit/circuitpython refs/tags/*:refs/tags/*
374
374
- name : mpy-cross
375
375
run : make -C mpy-cross -j2
376
376
- name : build
@@ -404,6 +404,11 @@ jobs:
404
404
uses : actions/setup-python@v1
405
405
with :
406
406
python-version : 3.8
407
+
408
+ with :
409
+ submodules : true
410
+ fetch-depth : 0
411
+ - run : git fetch --recurse-submodules=no https://github.com/adafruit/circuitpython refs/tags/*:refs/tags/*
407
412
- name : Install deps
408
413
run : |
409
414
sudo apt-get install -y gettext
@@ -415,11 +420,6 @@ jobs:
415
420
gcc --version
416
421
riscv64-unknown-elf-gcc --version
417
422
python3 --version
418
-
419
- with :
420
- submodules : true
421
- fetch-depth : 0
422
- - run : git fetch --recurse-submodules=no https://github.com/adafruit/circuitpython refs/tags/*:refs/tags/*
423
423
- name : mpy-cross
424
424
run : make -C mpy-cross -j2
425
425
- name : build
0 commit comments