commit
b4430740a8
1 changed files with 5 additions and 5 deletions
10
.github/workflows/build.yml
vendored
10
.github/workflows/build.yml
vendored
|
|
@ -10,10 +10,10 @@ jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- name: Dump GitHub context
|
- name: View context attributes
|
||||||
env:
|
uses: actions/github-script@v6
|
||||||
GITHUB_CONTEXT: ${{ toJson(github) }}
|
with:
|
||||||
run: echo "$GITHUB_CONTEXT"
|
script: console.log(JSON.stringify(context, null, 2))
|
||||||
- name: Translate Repo Name For Build Tools filename_prefix
|
- name: Translate Repo Name For Build Tools filename_prefix
|
||||||
id: repo-name
|
id: repo-name
|
||||||
run: |
|
run: |
|
||||||
|
|
@ -55,7 +55,7 @@ jobs:
|
||||||
- name: Clone and build circuitpython unix port
|
- name: Clone and build circuitpython unix port
|
||||||
run: |
|
run: |
|
||||||
set -e
|
set -e
|
||||||
[ -e circuitpython/py/py.mk ] || git clone --depth=1 https://github.com/adafruit/circuitpython
|
[ -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)
|
||||||
[ -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)
|
[ -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)
|
||||||
[ -x circuitpython/ports/unix/micropython ] || (
|
[ -x circuitpython/ports/unix/micropython ] || (
|
||||||
make -C circuitpython/mpy-cross -j$(nproc)
|
make -C circuitpython/mpy-cross -j$(nproc)
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue