use composite action for fetching submodules
This commit is contained in:
parent
d9589daf46
commit
fc0bd6b7eb
|
@ -0,0 +1,82 @@
|
||||||
|
name: 'Fetch Submodules'
|
||||||
|
|
||||||
|
inputs:
|
||||||
|
submodules:
|
||||||
|
description: 'The submodules to cache'
|
||||||
|
required: false
|
||||||
|
default: '["extmod/ulab", "lib/", "tools/"]'
|
||||||
|
type: string
|
||||||
|
|
||||||
|
cache:
|
||||||
|
description: 'The cache action to use'
|
||||||
|
required: false
|
||||||
|
default: 'restore'
|
||||||
|
type: choice
|
||||||
|
options:
|
||||||
|
- cache
|
||||||
|
- restore
|
||||||
|
|
||||||
|
version:
|
||||||
|
description: 'Whether to generate CP version'
|
||||||
|
required: false
|
||||||
|
default: false
|
||||||
|
type: boolean
|
||||||
|
|
||||||
|
outputs:
|
||||||
|
frozen:
|
||||||
|
description: 'Whether frozen submodules were fetched'
|
||||||
|
value: ${{ steps.cp-deps.outputs.frozen_tags }}
|
||||||
|
|
||||||
|
version:
|
||||||
|
description: 'The CP version'
|
||||||
|
value: ${{ steps.cp-version.outputs.cp-version }}
|
||||||
|
|
||||||
|
runs:
|
||||||
|
using: "composite"
|
||||||
|
steps:
|
||||||
|
- name: Create submodule status
|
||||||
|
id: create-submodule-status
|
||||||
|
run: |
|
||||||
|
git submodule status ${{ join(fromJSON(inputs.submodules), ' ') }} >> submodule_status
|
||||||
|
echo $(cut -d ' ' -f 2 submodule_status) | echo "submodules=[\"$(sed "s/ /\", \"/g")\"]" >> $GITHUB_OUTPUT
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: Cache submodules
|
||||||
|
if: ${{ inputs.cache == 'cache' }}
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: ".git/modules/\n${{ join(fromJSON(steps.create-submodule-status.outputs.submodules), '\n') }}"
|
||||||
|
key: submodules-common-${{ hashFiles('submodule_status') }}
|
||||||
|
enableCrossOsArchive: true
|
||||||
|
|
||||||
|
- name: Restore submodules
|
||||||
|
if: ${{ inputs.cache == 'restore' }}
|
||||||
|
uses: actions/cache/restore@v3
|
||||||
|
with:
|
||||||
|
path: ".git/modules/\n${{ join(fromJSON(steps.create-submodule-status.outputs.submodules), '\n') }}"
|
||||||
|
key: submodules-common-${{ hashFiles('submodule_status') }}
|
||||||
|
enableCrossOsArchive: true
|
||||||
|
|
||||||
|
- name: Remove submodule status
|
||||||
|
run: rm submodule_status
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: CircuitPython dependencies
|
||||||
|
id: cp-deps
|
||||||
|
run: python tools/ci_fetch_deps.py ${{ matrix.board || github.job }}
|
||||||
|
shell: bash
|
||||||
|
|
||||||
|
- name: CircuitPython version
|
||||||
|
id: cp-version
|
||||||
|
if: ${{ inputs.version == 'true' }}
|
||||||
|
run: |
|
||||||
|
echo "::group::Fetch history and tags"
|
||||||
|
git fetch --no-recurse-submodules --shallow-since="2021-07-01" --tags https://github.com/adafruit/circuitpython HEAD
|
||||||
|
git fetch --no-recurse-submodules --shallow-since="2021-07-01" origin $GITHUB_SHA
|
||||||
|
git repack -d
|
||||||
|
echo "::endgroup::"
|
||||||
|
CP_VERSION=$(tools/describe)
|
||||||
|
echo "$CP_VERSION"
|
||||||
|
echo "CP_VERSION=$CP_VERSION" >> $GITHUB_ENV
|
||||||
|
echo "cp-version=$CP_VERSION" >> $GITHUB_OUTPUT
|
||||||
|
shell: bash
|
|
@ -16,9 +16,6 @@ concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
env:
|
|
||||||
CACHE_SUBMODULES: "['extmod/ulab', 'lib/', 'tools/']"
|
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
|
@ -28,7 +25,7 @@ jobs:
|
||||||
boards-arm: ${{ steps.set-matrix.outputs.boards-arm }}
|
boards-arm: ${{ steps.set-matrix.outputs.boards-arm }}
|
||||||
boards-espressif: ${{ steps.set-matrix.outputs.boards-espressif }}
|
boards-espressif: ${{ steps.set-matrix.outputs.boards-espressif }}
|
||||||
boards-riscv: ${{ steps.set-matrix.outputs.boards-riscv }}
|
boards-riscv: ${{ steps.set-matrix.outputs.boards-riscv }}
|
||||||
cp-version: ${{ steps.cp-version.outputs.cp-version }}
|
cp-version: ${{ steps.set-up-submodules.outputs.version }}
|
||||||
steps:
|
steps:
|
||||||
- name: Dump GitHub context
|
- name: Dump GitHub context
|
||||||
run: echo "$GITHUB_CONTEXT"
|
run: echo "$GITHUB_CONTEXT"
|
||||||
|
@ -45,28 +42,12 @@ jobs:
|
||||||
python-version: "3.x"
|
python-version: "3.x"
|
||||||
- name: Duplicate USB VID/PID check
|
- name: Duplicate USB VID/PID check
|
||||||
run: python3 -u -m tools.ci_check_duplicate_usb_vid_pid
|
run: python3 -u -m tools.ci_check_duplicate_usb_vid_pid
|
||||||
- name: Create submodule status
|
- name: Set up submodules
|
||||||
run: git submodule status ${{ join(fromJSON(env.CACHE_SUBMODULES), ' ') }} >> submodule_status
|
id: set-up-submodules
|
||||||
- name: Cache submodules
|
uses: ./.github/actions/fetch_submodules
|
||||||
uses: actions/cache@v3
|
|
||||||
with:
|
with:
|
||||||
path: ".git/modules/\n${{ join(fromJSON(env.CACHE_SUBMODULES), '\n') }}"
|
cache: "cache"
|
||||||
key: submodules-common-${{ hashFiles('submodule_status') }}
|
version: true
|
||||||
- name: CircuitPython dependencies
|
|
||||||
run: |
|
|
||||||
python tools/ci_fetch_deps.py ${{ github.job }}
|
|
||||||
echo "::group::Fetch history and tags"
|
|
||||||
git fetch --no-recurse-submodules --shallow-since="2021-07-01" --tags https://github.com/adafruit/circuitpython HEAD
|
|
||||||
git fetch --no-recurse-submodules --shallow-since="2021-07-01" origin $GITHUB_SHA
|
|
||||||
git repack -d
|
|
||||||
echo "::endgroup::"
|
|
||||||
- name: CircuitPython version
|
|
||||||
id: cp-version
|
|
||||||
run: |
|
|
||||||
CP_VERSION=$(tools/describe)
|
|
||||||
echo "$CP_VERSION"
|
|
||||||
echo "CP_VERSION=$CP_VERSION" >> $GITHUB_ENV
|
|
||||||
echo "cp-version=$CP_VERSION" >> $GITHUB_OUTPUT
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
|
@ -202,17 +183,8 @@ jobs:
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: "3.x"
|
python-version: "3.x"
|
||||||
- name: Create submodule status
|
- name: Set up submodules
|
||||||
run: git submodule status ${{ join(fromJSON(env.CACHE_SUBMODULES), ' ') }} >> submodule_status
|
uses: ./.github/actions/fetch_submodules
|
||||||
- name: Restore submodules
|
|
||||||
uses: actions/cache/restore@v3
|
|
||||||
with:
|
|
||||||
path: ".git/modules/\n${{ join(fromJSON(env.CACHE_SUBMODULES), '\n') }}"
|
|
||||||
key: submodules-common-${{ hashFiles('submodule_status') }}
|
|
||||||
- name: CircuitPython dependencies
|
|
||||||
run: python tools/ci_fetch_deps.py ${{ github.job }}
|
|
||||||
- name: CircuitPython version
|
|
||||||
run: tools/describe
|
|
||||||
- name: Versions
|
- name: Versions
|
||||||
run: |
|
run: |
|
||||||
gcc --version
|
gcc --version
|
||||||
|
@ -260,21 +232,12 @@ jobs:
|
||||||
with:
|
with:
|
||||||
submodules: false
|
submodules: false
|
||||||
fetch-depth: 1
|
fetch-depth: 1
|
||||||
- name: Create submodule status
|
|
||||||
run: git submodule status ${{ join(fromJSON(env.CACHE_SUBMODULES), ' ') }} >> submodule_status
|
|
||||||
- name: Restore submodules
|
|
||||||
uses: actions/cache/restore@v3
|
|
||||||
with:
|
|
||||||
path: ".git/modules/\n${{ join(fromJSON(env.CACHE_SUBMODULES), '\n') }}"
|
|
||||||
key: submodules-common-${{ hashFiles('submodule_status') }}
|
|
||||||
- name: CircuitPython dependencies
|
|
||||||
run: python tools/ci_fetch_deps.py ${{ github.job }}
|
|
||||||
- name: CircuitPython version
|
|
||||||
run: tools/describe
|
|
||||||
- name: Set up python
|
- name: Set up python
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: "3.x"
|
python-version: "3.x"
|
||||||
|
- name: Set up submodules
|
||||||
|
uses: ./.github/actions/fetch_submodules
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get update
|
sudo apt-get update
|
||||||
|
@ -343,16 +306,9 @@ jobs:
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: "3.x"
|
python-version: "3.x"
|
||||||
- name: Create submodule status
|
- name: Set up submodules
|
||||||
run: git submodule status ${{ join(fromJSON(env.CACHE_SUBMODULES), ' ') }} >> submodule_status
|
id: set-up-submodules
|
||||||
- name: Restore submodules
|
uses: ./.github/actions/fetch_submodules
|
||||||
uses: actions/cache/restore@v3
|
|
||||||
with:
|
|
||||||
path: ".git/modules/\n${{ join(fromJSON(env.CACHE_SUBMODULES), '\n') }}"
|
|
||||||
key: submodules-common-${{ hashFiles('submodule_status') }}
|
|
||||||
- name: CircuitPython dependencies
|
|
||||||
id: cp-deps
|
|
||||||
run: python tools/ci_fetch_deps.py ${{ matrix.board }}
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get install -y gettext mtools
|
sudo apt-get install -y gettext mtools
|
||||||
|
@ -379,7 +335,7 @@ jobs:
|
||||||
python3 --version
|
python3 --version
|
||||||
mkfs.fat --version || true
|
mkfs.fat --version || true
|
||||||
- name: Build mpy-cross
|
- name: Build mpy-cross
|
||||||
if: ${{ steps.cp-deps.outputs.frozen_tags == 'True' }}
|
if: ${{ steps.set-up-submodules.outputs.frozen == 'True' }}
|
||||||
run: make -C mpy-cross -j2
|
run: make -C mpy-cross -j2
|
||||||
- name: Setup build failure matcher
|
- name: Setup build failure matcher
|
||||||
run: echo "::add-matcher::$GITHUB_WORKSPACE/.github/workflows/match-build-fail.json"
|
run: echo "::add-matcher::$GITHUB_WORKSPACE/.github/workflows/match-build-fail.json"
|
||||||
|
@ -425,16 +381,9 @@ jobs:
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: "3.x"
|
python-version: "3.x"
|
||||||
- name: Create submodule status
|
- name: Set up submodules
|
||||||
run: git submodule status ${{ join(fromJSON(env.CACHE_SUBMODULES), ' ') }} >> submodule_status
|
id: set-up-submodules
|
||||||
- name: Restore submodules
|
uses: ./.github/actions/fetch_submodules
|
||||||
uses: actions/cache/restore@v3
|
|
||||||
with:
|
|
||||||
path: ".git/modules/\n${{ join(fromJSON(env.CACHE_SUBMODULES), '\n') }}"
|
|
||||||
key: submodules-common-${{ hashFiles('submodule_status') }}
|
|
||||||
- name: CircuitPython dependencies
|
|
||||||
id: cp-deps
|
|
||||||
run: python tools/ci_fetch_deps.py ${{ matrix.board }}
|
|
||||||
- uses: carlosperate/arm-none-eabi-gcc-action@v1
|
- uses: carlosperate/arm-none-eabi-gcc-action@v1
|
||||||
with:
|
with:
|
||||||
release: '10-2020-q4'
|
release: '10-2020-q4'
|
||||||
|
@ -448,7 +397,7 @@ jobs:
|
||||||
arm-none-eabi-gcc --version
|
arm-none-eabi-gcc --version
|
||||||
python3 --version
|
python3 --version
|
||||||
- name: Build mpy-cross
|
- name: Build mpy-cross
|
||||||
if: ${{ steps.cp-deps.outputs.frozen_tags == 'True' }}
|
if: ${{ steps.set-up-submodules.outputs.frozen == 'True' }}
|
||||||
run: make -C mpy-cross -j2
|
run: make -C mpy-cross -j2
|
||||||
- name: Setup build failure matcher
|
- name: Setup build failure matcher
|
||||||
run: echo "::add-matcher::$GITHUB_WORKSPACE/.github/workflows/match-build-fail.json"
|
run: echo "::add-matcher::$GITHUB_WORKSPACE/.github/workflows/match-build-fail.json"
|
||||||
|
@ -474,7 +423,6 @@ jobs:
|
||||||
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
build-espressif:
|
build-espressif:
|
||||||
runs-on: ubuntu-22.04
|
runs-on: ubuntu-22.04
|
||||||
needs: test
|
needs: test
|
||||||
|
@ -498,13 +446,6 @@ jobs:
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: "3.10"
|
python-version: "3.10"
|
||||||
- name: Create submodule status
|
|
||||||
run: git submodule status ${{ join(fromJSON(env.CACHE_SUBMODULES), ' ') }} >> submodule_status
|
|
||||||
- name: Restore submodules
|
|
||||||
uses: actions/cache/restore@v3
|
|
||||||
with:
|
|
||||||
path: ".git/modules/\n${{ join(fromJSON(env.CACHE_SUBMODULES), '\n') }}"
|
|
||||||
key: submodules-common-${{ hashFiles('submodule_status') }}
|
|
||||||
- name: Get IDF commit
|
- name: Get IDF commit
|
||||||
id: idf-commit
|
id: idf-commit
|
||||||
run: |
|
run: |
|
||||||
|
@ -518,19 +459,13 @@ jobs:
|
||||||
.git/modules/ports/espressif/esp-idf
|
.git/modules/ports/espressif/esp-idf
|
||||||
ports/espressif/esp-idf
|
ports/espressif/esp-idf
|
||||||
key: submodules-idf-${{ steps.idf-commit.outputs.commit }}
|
key: submodules-idf-${{ steps.idf-commit.outputs.commit }}
|
||||||
- name: CircuitPython dependencies
|
|
||||||
id: cp-deps
|
|
||||||
run: python tools/ci_fetch_deps.py ${{ matrix.board }}
|
|
||||||
- name: CircuitPython version
|
|
||||||
run: tools/describe
|
|
||||||
- name: Cache IDF tools
|
- name: Cache IDF tools
|
||||||
uses: actions/cache@v3
|
uses: actions/cache@v3
|
||||||
with:
|
with:
|
||||||
path: ${{ env.IDF_TOOLS_PATH }}
|
path: ${{ env.IDF_TOOLS_PATH }}
|
||||||
key: ${{ runner.os }}-Python-${{ steps.setup-python.outputs.python-version }}-tools-idf-${{ steps.idf-commit.outputs.commit }}
|
key: ${{ runner.os }}-Python-${{ steps.setup-python.outputs.python-version }}-tools-idf-${{ steps.idf-commit.outputs.commit }}
|
||||||
- name: Clone IDF submodules
|
- name: Initialize IDF submodules
|
||||||
run: git submodule update --init --depth=1
|
run: git submodule update --init --depth=1 --recursive $IDF_PATH
|
||||||
working-directory: ${{ env.IDF_PATH }}
|
|
||||||
- name: Install IDF tools
|
- name: Install IDF tools
|
||||||
run: |
|
run: |
|
||||||
echo "Installing ESP-IDF tools"
|
echo "Installing ESP-IDF tools"
|
||||||
|
@ -539,6 +474,9 @@ jobs:
|
||||||
echo "Installing Python environment and packages"
|
echo "Installing Python environment and packages"
|
||||||
$IDF_PATH/tools/idf_tools.py --non-interactive install-python-env
|
$IDF_PATH/tools/idf_tools.py --non-interactive install-python-env
|
||||||
rm -rf $IDF_TOOLS_PATH/dist
|
rm -rf $IDF_TOOLS_PATH/dist
|
||||||
|
- name: Set up submodules
|
||||||
|
id: set-up-submodules
|
||||||
|
uses: ./.github/actions/fetch_submodules
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
source $IDF_PATH/export.sh
|
source $IDF_PATH/export.sh
|
||||||
|
@ -552,7 +490,7 @@ jobs:
|
||||||
ninja --version
|
ninja --version
|
||||||
cmake --version
|
cmake --version
|
||||||
- name: Build mpy-cross
|
- name: Build mpy-cross
|
||||||
if: ${{ steps.cp-deps.outputs.frozen_tags == 'True' }}
|
if: ${{ steps.set-up-submodules.outputs.frozen == 'True' }}
|
||||||
run: make -C mpy-cross -j2
|
run: make -C mpy-cross -j2
|
||||||
- name: Setup build failure matcher
|
- name: Setup build failure matcher
|
||||||
run: echo "::add-matcher::$GITHUB_WORKSPACE/.github/workflows/match-build-fail.json"
|
run: echo "::add-matcher::$GITHUB_WORKSPACE/.github/workflows/match-build-fail.json"
|
||||||
|
@ -600,16 +538,9 @@ jobs:
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: "3.x"
|
python-version: "3.x"
|
||||||
- name: Create submodule status
|
- name: Set up submodules
|
||||||
run: git submodule status ${{ join(fromJSON(env.CACHE_SUBMODULES), ' ') }} >> submodule_status
|
id: set-up-submodules
|
||||||
- name: Restore submodules
|
uses: ./.github/actions/fetch_submodules
|
||||||
uses: actions/cache/restore@v3
|
|
||||||
with:
|
|
||||||
path: ".git/modules/\n${{ join(fromJSON(env.CACHE_SUBMODULES), '\n') }}"
|
|
||||||
key: submodules-common-${{ hashFiles('submodule_status') }}
|
|
||||||
- name: CircuitPython dependencies
|
|
||||||
id: cp-deps
|
|
||||||
run: python tools/ci_fetch_deps.py ${{ matrix.board }}
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: |
|
run: |
|
||||||
sudo apt-get install -y gettext
|
sudo apt-get install -y gettext
|
||||||
|
@ -622,7 +553,7 @@ jobs:
|
||||||
riscv64-unknown-elf-gcc --version
|
riscv64-unknown-elf-gcc --version
|
||||||
python3 --version
|
python3 --version
|
||||||
- name: Build mpy-cross
|
- name: Build mpy-cross
|
||||||
if: ${{ steps.cp-deps.outputs.frozen_tags == 'True' }}
|
if: ${{ steps.set-up-submodules.outputs.frozen == 'True' }}
|
||||||
run: make -C mpy-cross -j2
|
run: make -C mpy-cross -j2
|
||||||
- name: Setup build failure matcher
|
- name: Setup build failure matcher
|
||||||
run: echo "::add-matcher::$GITHUB_WORKSPACE/.github/workflows/match-build-fail.json"
|
run: echo "::add-matcher::$GITHUB_WORKSPACE/.github/workflows/match-build-fail.json"
|
||||||
|
|
|
@ -25,19 +25,10 @@ jobs:
|
||||||
uses: actions/setup-python@v4
|
uses: actions/setup-python@v4
|
||||||
with:
|
with:
|
||||||
python-version: "3.x"
|
python-version: "3.x"
|
||||||
- name: CircuitPython dependencies
|
- name: Set up submodules
|
||||||
run: |
|
uses: ./.github/actions/fetch_submodules
|
||||||
python tools/ci_fetch_deps.py ${{ github.job }}
|
with:
|
||||||
echo "::group::Fetch history and tags"
|
version: true
|
||||||
git fetch --no-recurse-submodules --shallow-since="2021-07-01" --tags https://github.com/adafruit/circuitpython HEAD
|
|
||||||
git fetch --no-recurse-submodules --shallow-since="2021-07-01" origin $GITHUB_SHA
|
|
||||||
git repack -d
|
|
||||||
echo "::endgroup::"
|
|
||||||
- name: CircuitPython version
|
|
||||||
run: |
|
|
||||||
CP_VERSION=$(tools/describe)
|
|
||||||
echo "$CP_VERSION"
|
|
||||||
echo "CP_VERSION=$CP_VERSION" >> $GITHUB_ENV
|
|
||||||
- name: Install dependencies
|
- name: Install dependencies
|
||||||
run: pip install -r requirements-dev.txt
|
run: pip install -r requirements-dev.txt
|
||||||
- name: Versions
|
- name: Versions
|
||||||
|
|
|
@ -19,7 +19,7 @@ concurrency:
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
windows:
|
||||||
runs-on: windows-2022
|
runs-on: windows-2022
|
||||||
defaults:
|
defaults:
|
||||||
run:
|
run:
|
||||||
|
@ -75,31 +75,11 @@ jobs:
|
||||||
with:
|
with:
|
||||||
submodules: false
|
submodules: false
|
||||||
fetch-depth: 1
|
fetch-depth: 1
|
||||||
- name: Create submodule status
|
|
||||||
run: git submodule status extmod/ulab lib/ tools/ >> submodule_status
|
- name: Set up submodules
|
||||||
- name: Restore submodules
|
uses: ./.github/actions/fetch_submodules
|
||||||
uses: actions/cache/restore@v3
|
|
||||||
with:
|
with:
|
||||||
path: |
|
version: true
|
||||||
.git/modules/
|
|
||||||
extmod/ulab
|
|
||||||
lib/
|
|
||||||
tools/
|
|
||||||
key: submodules-common-${{ hashFiles('submodule_status') }}
|
|
||||||
enableCrossOsArchive: true
|
|
||||||
- name: CircuitPython dependencies
|
|
||||||
run: |
|
|
||||||
python tools/ci_fetch_deps.py windows
|
|
||||||
echo "::group::Fetch history and tags"
|
|
||||||
git fetch --no-recurse-submodules --shallow-since="2021-07-01" --tags https://github.com/adafruit/circuitpython HEAD
|
|
||||||
git fetch --no-recurse-submodules --shallow-since="2021-07-01" origin $GITHUB_SHA
|
|
||||||
git repack -d
|
|
||||||
echo "::endgroup::"
|
|
||||||
- name: CircuitPython version
|
|
||||||
run: |
|
|
||||||
CP_VERSION=$(tools/describe)
|
|
||||||
echo "$CP_VERSION"
|
|
||||||
echo "CP_VERSION=$CP_VERSION" >> $GITHUB_ENV
|
|
||||||
|
|
||||||
- name: build mpy-cross
|
- name: build mpy-cross
|
||||||
run: make -j2 -C mpy-cross
|
run: make -j2 -C mpy-cross
|
||||||
|
|
Loading…
Reference in New Issue