Skip to content

Commit e2a63d5

Browse files
authored
Merge branch 'micropython:master' into esp32_bitstream
2 parents 77e885b + 9999553 commit e2a63d5

File tree

284 files changed

+2612
-1164
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

284 files changed

+2612
-1164
lines changed

.github/workflows/code_formatting.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ jobs:
1313
- uses: actions/checkout@v5
1414
- uses: actions/setup-python@v6
1515
- name: Install packages
16-
run: source tools/ci.sh && ci_c_code_formatting_setup
16+
run: tools/ci.sh c_code_formatting_setup
1717
- name: Run code formatting
18-
run: source tools/ci.sh && ci_c_code_formatting_run
18+
run: tools/ci.sh c_code_formatting_run
1919
- name: Check code formatting
2020
run: git diff --exit-code

.github/workflows/code_size.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -29,11 +29,11 @@ jobs:
2929
with:
3030
fetch-depth: 100
3131
- name: Install packages
32-
run: source tools/ci.sh && ci_code_size_setup
32+
run: tools/ci.sh code_size_setup
3333
- name: Build
34-
run: source tools/ci.sh && ci_code_size_build
34+
run: tools/ci.sh code_size_build
3535
- name: Compute code size difference
36-
run: tools/metrics.py diff ~/size0 ~/size1 | tee diff
36+
run: source tools/ci.sh && ci_code_size_report
3737
- name: Save PR number
3838
if: github.event_name == 'pull_request'
3939
env:

.github/workflows/commit_formatting.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ jobs:
1515
fetch-depth: 100
1616
- uses: actions/setup-python@v6
1717
- name: Check commit message formatting
18-
run: source tools/ci.sh && ci_commit_formatting_run
18+
run: tools/ci.sh commit_formatting_run

.github/workflows/docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,6 @@ jobs:
2222
- name: Install Python packages
2323
run: pip install -r docs/requirements.txt
2424
- name: Build unix port
25-
run: source tools/ci.sh && ci_unix_build_helper
25+
run: tools/ci.sh unix_build_helper
2626
- name: Build docs
2727
run: make -C docs/ html

.github/workflows/mpy_format.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,6 @@ jobs:
1919
steps:
2020
- uses: actions/checkout@v5
2121
- name: Install packages
22-
run: source tools/ci.sh && ci_mpy_format_setup
22+
run: tools/ci.sh mpy_format_setup
2323
- name: Test mpy-tool.py
24-
run: source tools/ci.sh && ci_mpy_format_test
24+
run: tools/ci.sh mpy_format_test

.github/workflows/ports_alif.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ jobs:
2828
steps:
2929
- uses: actions/checkout@v5
3030
- name: Install packages
31-
run: source tools/ci.sh && ci_alif_setup
31+
run: tools/ci.sh alif_setup
3232
- name: Build ci_${{matrix.ci_func }}
33-
run: source tools/ci.sh && ci_${{ matrix.ci_func }}
33+
run: tools/ci.sh ${{ matrix.ci_func }}

.github/workflows/ports_cc3200.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v5
2525
- name: Install packages
26-
run: source tools/ci.sh && ci_cc3200_setup
26+
run: tools/ci.sh cc3200_setup
2727
- name: Build
28-
run: source tools/ci.sh && ci_cc3200_build
28+
run: tools/ci.sh cc3200_build

.github/workflows/ports_esp32.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,12 +51,12 @@ jobs:
5151

5252
- name: Install ESP-IDF packages
5353
if: steps.cache_esp_idf.outputs.cache-hit != 'true'
54-
run: source tools/ci.sh && ci_esp32_idf_setup
54+
run: tools/ci.sh esp32_idf_setup
5555

5656
- name: ccache
5757
uses: hendrikmuhs/[email protected]
5858
with:
5959
key: esp32-${{ matrix.ci_func }}
6060

6161
- name: Build ci_${{matrix.ci_func }}
62-
run: source tools/ci.sh && ci_${{ matrix.ci_func }}
62+
run: tools/ci.sh ${{ matrix.ci_func }}

.github/workflows/ports_esp8266.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,6 +23,6 @@ jobs:
2323
steps:
2424
- uses: actions/checkout@v5
2525
- name: Install packages
26-
run: source tools/ci.sh && ci_esp8266_setup && ci_esp8266_path >> $GITHUB_PATH
26+
run: tools/ci.sh esp8266_setup && tools/ci.sh esp8266_path >> $GITHUB_PATH
2727
- name: Build
28-
run: source tools/ci.sh && ci_esp8266_build
28+
run: tools/ci.sh esp8266_build

.github/workflows/ports_mimxrt.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,6 @@ jobs:
2828
with:
2929
path: 'micropython repo'
3030
- name: Install packages
31-
run: source tools/ci.sh && ci_mimxrt_setup
31+
run: tools/ci.sh mimxrt_setup
3232
- name: Build
33-
run: source tools/ci.sh && ci_mimxrt_build
33+
run: tools/ci.sh mimxrt_build

0 commit comments

Comments
 (0)