Skip to content

Commit 48d0508

Browse files
committed
Merge remote-tracking branch 'origin/main' into pre-commit-ci-update-config
2 parents 04885e6 + b443074 commit 48d0508

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/build.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ jobs:
1010
test:
1111
runs-on: ubuntu-20.04
1212
steps:
13-
- name: Dump GitHub context
14-
env:
15-
GITHUB_CONTEXT: ${{ toJson(github) }}
16-
run: echo "$GITHUB_CONTEXT"
13+
- name: View context attributes
14+
uses: actions/github-script@v6
15+
with:
16+
script: console.log(JSON.stringify(context, null, 2))
1717
- name: Translate Repo Name For Build Tools filename_prefix
1818
id: repo-name
1919
run: |
@@ -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)