File tree Expand file tree Collapse file tree 1 file changed +5
-5
lines changed
Expand file tree Collapse file tree 1 file changed +5
-5
lines changed Original file line number Diff line number Diff 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 : |
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)
You can’t perform that action at this time.
0 commit comments