Skip to content

Commit 9d76824

Browse files
committed
fetch tags before building circuitpython
1 parent aab1061 commit 9d76824

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
- name: Clone and build circuitpython unix port
5656
run: |
5757
set -e
58-
[ -e circuitpython/py/py.mk ] || git clone --depth=1 https://github.com/adafruit/circuitpython
58+
[ -e circuitpython/py/py.mk ] || (git clone --depth=1 https://github.com/adafruit/circuitpython && cd circuitpython && git fetch --tags --recurse-submodules=no --shallow-since="2021-07-01" https://github.com/adafruit/circuitpython HEAD)
5959
[ -e circuitpython/lib/libffi/autogen.sh ] || (cd circuitpython && git submodule update --init lib/libffi lib/axtls lib/berkeley-db-1.xx tools/huffman lib/uzlib extmod/ulab)
6060
[ -x circuitpython/ports/unix/micropython ] || (
6161
make -C circuitpython/mpy-cross -j$(nproc)

0 commit comments

Comments
 (0)