github/workflows: Use new ci.sh style for calling functions.
Some checks failed
JavaScript code lint and formatting with Biome / eslint (push) Has been cancelled
Check code formatting / code-formatting (push) Has been cancelled
Check spelling with codespell / codespell (push) Has been cancelled
Build docs / build (push) Has been cancelled
Check examples / embedding (push) Has been cancelled
Package mpremote / build (push) Has been cancelled
.mpy file format and tools / test (push) Has been cancelled
Build ports metadata / build (push) Has been cancelled
alif port / build_alif (alif_ae3_build) (push) Has been cancelled
cc3200 port / build (push) Has been cancelled
esp32 port / build_idf (esp32_build_c2_c6) (push) Has been cancelled
esp32 port / build_idf (esp32_build_cmod_spiram_s2) (push) Has been cancelled
esp32 port / build_idf (esp32_build_s3_c3) (push) Has been cancelled
esp8266 port / build (push) Has been cancelled
mimxrt port / build (push) Has been cancelled
nrf port / build (push) Has been cancelled
powerpc port / build (push) Has been cancelled
qemu port / build_and_test_arm (bigendian) (push) Has been cancelled
qemu port / build_and_test_arm (sabrelite) (push) Has been cancelled
qemu port / build_and_test_arm (thumb_hardfp) (push) Has been cancelled
qemu port / build_and_test_arm (thumb_softfp) (push) Has been cancelled
qemu port / build_and_test_rv32 (push) Has been cancelled
qemu port / build_and_test_rv64 (push) Has been cancelled
renesas-ra port / build_renesas_ra_board (push) Has been cancelled
rp2 port / build (push) Has been cancelled
samd port / build (push) Has been cancelled
stm32 port / build_stm32 (stm32_misc_build) (push) Has been cancelled
stm32 port / build_stm32 (stm32_nucleo_build) (push) Has been cancelled
stm32 port / build_stm32 (stm32_pyb_build) (push) Has been cancelled
unix port / minimal (push) Has been cancelled
unix port / reproducible (push) Has been cancelled
unix port / standard (push) Has been cancelled
unix port / standard_v2 (push) Has been cancelled
unix port / coverage (push) Has been cancelled
unix port / coverage_32bit (push) Has been cancelled
unix port / nanbox (push) Has been cancelled
unix port / longlong (push) Has been cancelled
unix port / float (push) Has been cancelled
unix port / gil_enabled (push) Has been cancelled
unix port / stackless_clang (push) Has been cancelled
unix port / float_clang (push) Has been cancelled
unix port / settrace_stackless (push) Has been cancelled
unix port / repr_b (push) Has been cancelled
unix port / macos (push) Has been cancelled
unix port / qemu_mips (push) Has been cancelled
unix port / qemu_arm (push) Has been cancelled
unix port / qemu_riscv64 (push) Has been cancelled
unix port / sanitize_address (push) Has been cancelled
unix port / sanitize_undefined (push) Has been cancelled
webassembly port / build (push) Has been cancelled
windows port / build-vs (Debug, true, x64, dev, 2017, [15, 16)) (push) Has been cancelled
windows port / build-vs (Debug, true, x86, dev, 2017, [15, 16)) (push) Has been cancelled
windows port / build-vs (Debug, x64, dev, 2022, [17, 18)) (push) Has been cancelled
windows port / build-vs (Debug, x86, dev, 2022, [17, 18)) (push) Has been cancelled
windows port / build-vs (Release, true, x64, dev, 2017, [15, 16)) (push) Has been cancelled
windows port / build-vs (Release, true, x64, dev, 2019, [16, 17)) (push) Has been cancelled
windows port / build-vs (Release, true, x64, standard, 2017, [15, 16)) (push) Has been cancelled
windows port / build-vs (Release, true, x64, standard, 2019, [16, 17)) (push) Has been cancelled
windows port / build-vs (Release, true, x86, dev, 2017, [15, 16)) (push) Has been cancelled
windows port / build-vs (Release, true, x86, dev, 2019, [16, 17)) (push) Has been cancelled
windows port / build-vs (Release, true, x86, standard, 2017, [15, 16)) (push) Has been cancelled
windows port / build-vs (Release, true, x86, standard, 2019, [16, 17)) (push) Has been cancelled
windows port / build-vs (Release, x64, dev, 2022, [17, 18)) (push) Has been cancelled
windows port / build-vs (Release, x64, standard, 2022, [17, 18)) (push) Has been cancelled
windows port / build-vs (Release, x86, dev, 2022, [17, 18)) (push) Has been cancelled
windows port / build-vs (Release, x86, standard, 2022, [17, 18)) (push) Has been cancelled
windows port / build-mingw (i686, mingw32, dev) (push) Has been cancelled
windows port / build-mingw (i686, mingw32, standard) (push) Has been cancelled
windows port / build-mingw (x86_64, mingw64, dev) (push) Has been cancelled
windows port / build-mingw (x86_64, mingw64, standard) (push) Has been cancelled
windows port / cross-build-on-linux (push) Has been cancelled
zephyr port / build (push) Has been cancelled
Python code lint and formatting with ruff / ruff (push) Has been cancelled

During CI, invoke `ci.sh` the same way we'd recommend a developer to do so
locally.

Signed-off-by: Jeff Epler <jepler@unpythonic.net>
This commit is contained in:
Jeff Epler
2025-09-28 09:56:11 -05:00
committed by Damien George
parent 7d50952c2b
commit effb9503eb
21 changed files with 107 additions and 107 deletions

View File

@@ -13,8 +13,8 @@ jobs:
- uses: actions/checkout@v5
- uses: actions/setup-python@v6
- name: Install packages
run: source tools/ci.sh && ci_c_code_formatting_setup
run: tools/ci.sh c_code_formatting_setup
- name: Run code formatting
run: source tools/ci.sh && ci_c_code_formatting_run
run: tools/ci.sh c_code_formatting_run
- name: Check code formatting
run: git diff --exit-code

View File

@@ -29,9 +29,9 @@ jobs:
with:
fetch-depth: 100
- name: Install packages
run: source tools/ci.sh && ci_code_size_setup
run: tools/ci.sh code_size_setup
- name: Build
run: source tools/ci.sh && ci_code_size_build
run: tools/ci.sh code_size_build
- name: Compute code size difference
run: tools/metrics.py diff ~/size0 ~/size1 | tee diff
- name: Save PR number

View File

@@ -15,4 +15,4 @@ jobs:
fetch-depth: 100
- uses: actions/setup-python@v6
- name: Check commit message formatting
run: source tools/ci.sh && ci_commit_formatting_run
run: tools/ci.sh commit_formatting_run

View File

@@ -22,6 +22,6 @@ jobs:
- name: Install Python packages
run: pip install -r docs/requirements.txt
- name: Build unix port
run: source tools/ci.sh && ci_unix_build_helper
run: tools/ci.sh unix_build_helper
- name: Build docs
run: make -C docs/ html

View File

@@ -19,6 +19,6 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Install packages
run: source tools/ci.sh && ci_mpy_format_setup
run: tools/ci.sh mpy_format_setup
- name: Test mpy-tool.py
run: source tools/ci.sh && ci_mpy_format_test
run: tools/ci.sh mpy_format_test

View File

@@ -28,6 +28,6 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Install packages
run: source tools/ci.sh && ci_alif_setup
run: tools/ci.sh alif_setup
- name: Build ci_${{matrix.ci_func }}
run: source tools/ci.sh && ci_${{ matrix.ci_func }}
run: tools/ci.sh ${{ matrix.ci_func }}

View File

@@ -23,6 +23,6 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Install packages
run: source tools/ci.sh && ci_cc3200_setup
run: tools/ci.sh cc3200_setup
- name: Build
run: source tools/ci.sh && ci_cc3200_build
run: tools/ci.sh cc3200_build

View File

@@ -51,7 +51,7 @@ jobs:
- name: Install ESP-IDF packages
if: steps.cache_esp_idf.outputs.cache-hit != 'true'
run: source tools/ci.sh && ci_esp32_idf_setup
run: tools/ci.sh esp32_idf_setup
- name: ccache
uses: hendrikmuhs/ccache-action@v1.2
@@ -59,4 +59,4 @@ jobs:
key: esp32-${{ matrix.ci_func }}
- name: Build ci_${{matrix.ci_func }}
run: source tools/ci.sh && ci_${{ matrix.ci_func }}
run: tools/ci.sh ${{ matrix.ci_func }}

View File

@@ -23,6 +23,6 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Install packages
run: source tools/ci.sh && ci_esp8266_setup && ci_esp8266_path >> $GITHUB_PATH
run: tools/ci.sh esp8266_setup && tools/ci.sh esp8266_path >> $GITHUB_PATH
- name: Build
run: source tools/ci.sh && ci_esp8266_build
run: tools/ci.sh esp8266_build

View File

@@ -28,6 +28,6 @@ jobs:
with:
path: 'micropython repo'
- name: Install packages
run: source tools/ci.sh && ci_mimxrt_setup
run: tools/ci.sh mimxrt_setup
- name: Build
run: source tools/ci.sh && ci_mimxrt_build
run: tools/ci.sh mimxrt_build

View File

@@ -23,6 +23,6 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Install packages
run: source tools/ci.sh && ci_nrf_setup
run: tools/ci.sh nrf_setup
- name: Build
run: source tools/ci.sh && ci_nrf_build
run: tools/ci.sh nrf_build

View File

@@ -23,6 +23,6 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Install packages
run: source tools/ci.sh && ci_powerpc_setup
run: tools/ci.sh powerpc_setup
- name: Build
run: source tools/ci.sh && ci_powerpc_build
run: tools/ci.sh powerpc_build

View File

@@ -32,9 +32,9 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Install packages
run: source tools/ci.sh && ci_qemu_setup_arm
run: tools/ci.sh qemu_setup_arm
- name: Build and run test suite ci_qemu_build_arm_${{ matrix.ci_func }}
run: source tools/ci.sh && ci_qemu_build_arm_${{ matrix.ci_func }}
run: tools/ci.sh qemu_build_arm_${{ matrix.ci_func }}
- name: Print failures
if: failure()
run: tests/run-tests.py --print-failures
@@ -44,9 +44,9 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Install packages
run: source tools/ci.sh && ci_qemu_setup_rv32
run: tools/ci.sh qemu_setup_rv32
- name: Build and run test suite
run: source tools/ci.sh && ci_qemu_build_rv32
run: tools/ci.sh qemu_build_rv32
- name: Print failures
if: failure()
run: tests/run-tests.py --print-failures
@@ -56,9 +56,9 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Install packages
run: source tools/ci.sh && ci_qemu_setup_rv64
run: tools/ci.sh qemu_setup_rv64
- name: Build and run test suite
run: source tools/ci.sh && ci_qemu_build_rv64
run: tools/ci.sh qemu_build_rv64
- name: Print failures
if: failure()
run: tests/run-tests.py --print-failures

View File

@@ -23,7 +23,7 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Install packages
run: source tools/ci.sh && ci_renesas_ra_setup
run: tools/ci.sh renesas_ra_setup
- name: Build
run: source tools/ci.sh && ci_renesas_ra_board_build
run: tools/ci.sh renesas_ra_board_build

View File

@@ -28,6 +28,6 @@ jobs:
with:
path: 'micropython repo'
- name: Install packages
run: source tools/ci.sh && ci_rp2_setup
run: tools/ci.sh rp2_setup
- name: Build
run: source tools/ci.sh && ci_rp2_build
run: tools/ci.sh rp2_build

View File

@@ -23,6 +23,6 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Install packages
run: source tools/ci.sh && ci_samd_setup
run: tools/ci.sh samd_setup
- name: Build
run: source tools/ci.sh && ci_samd_build
run: tools/ci.sh samd_build

View File

@@ -30,7 +30,7 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Install packages
run: source tools/ci.sh && ci_stm32_setup
run: tools/ci.sh stm32_setup
- name: Build ci_${{matrix.ci_func }}
run: source tools/ci.sh && ci_${{ matrix.ci_func }}
run: tools/ci.sh ${{ matrix.ci_func }}

View File

@@ -25,9 +25,9 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Build
run: source tools/ci.sh && ci_unix_minimal_build
run: tools/ci.sh unix_minimal_build
- name: Run main test suite
run: source tools/ci.sh && ci_unix_minimal_run_tests
run: tools/ci.sh unix_minimal_run_tests
- name: Print failures
if: failure()
run: tests/run-tests.py --print-failures
@@ -37,7 +37,7 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Build with reproducible date
run: source tools/ci.sh && ci_unix_minimal_build
run: tools/ci.sh unix_minimal_build
env:
SOURCE_DATE_EPOCH: 1234567890
- name: Check reproducible build date
@@ -48,9 +48,9 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Build
run: source tools/ci.sh && ci_unix_standard_build
run: tools/ci.sh unix_standard_build
- name: Run main test suite
run: source tools/ci.sh && ci_unix_standard_run_tests
run: tools/ci.sh unix_standard_run_tests
- name: Print failures
if: failure()
run: tests/run-tests.py --print-failures
@@ -60,9 +60,9 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Build
run: source tools/ci.sh && ci_unix_standard_v2_build
run: tools/ci.sh unix_standard_v2_build
- name: Run main test suite
run: source tools/ci.sh && ci_unix_standard_v2_run_tests
run: tools/ci.sh unix_standard_v2_run_tests
- name: Print failures
if: failure()
run: tests/run-tests.py --print-failures
@@ -77,17 +77,17 @@ jobs:
with:
python-version: '3.11'
- name: Install packages
run: source tools/ci.sh && ci_unix_coverage_setup
run: tools/ci.sh unix_coverage_setup
- name: Build
run: source tools/ci.sh && ci_unix_coverage_build
run: tools/ci.sh unix_coverage_build
- name: Run main test suite
run: source tools/ci.sh && ci_unix_coverage_run_tests
run: tools/ci.sh unix_coverage_run_tests
- name: Test merging .mpy files
run: source tools/ci.sh && ci_unix_coverage_run_mpy_merge_tests
run: tools/ci.sh unix_coverage_run_mpy_merge_tests
- name: Build native mpy modules
run: source tools/ci.sh && ci_native_mpy_modules_build
run: tools/ci.sh native_mpy_modules_build
- name: Test importing .mpy generated by mpy_ld.py
run: source tools/ci.sh && ci_unix_coverage_run_native_mpy_tests
run: tools/ci.sh unix_coverage_run_native_mpy_tests
- name: Run gcov coverage analysis
run: |
(cd ports/unix && gcov -o build-coverage/py ../../py/*.c || true)
@@ -107,15 +107,15 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Install packages
run: source tools/ci.sh && ci_unix_32bit_setup
run: tools/ci.sh unix_32bit_setup
- name: Build
run: source tools/ci.sh && ci_unix_coverage_32bit_build
run: tools/ci.sh unix_coverage_32bit_build
- name: Run main test suite
run: source tools/ci.sh && ci_unix_coverage_32bit_run_tests
run: tools/ci.sh unix_coverage_32bit_run_tests
- name: Build native mpy modules
run: source tools/ci.sh && ci_native_mpy_modules_32bit_build
run: tools/ci.sh native_mpy_modules_32bit_build
- name: Test importing .mpy generated by mpy_ld.py
run: source tools/ci.sh && ci_unix_coverage_32bit_run_native_mpy_tests
run: tools/ci.sh unix_coverage_32bit_run_native_mpy_tests
- name: Print failures
if: failure()
run: tests/run-tests.py --print-failures
@@ -125,11 +125,11 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Install packages
run: source tools/ci.sh && ci_unix_32bit_setup
run: tools/ci.sh unix_32bit_setup
- name: Build
run: source tools/ci.sh && ci_unix_nanbox_build
run: tools/ci.sh unix_nanbox_build
- name: Run main test suite
run: source tools/ci.sh && ci_unix_nanbox_run_tests
run: tools/ci.sh unix_nanbox_run_tests
- name: Print failures
if: failure()
run: tests/run-tests.py --print-failures
@@ -139,11 +139,11 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Install packages
run: source tools/ci.sh && ci_unix_32bit_setup
run: tools/ci.sh unix_32bit_setup
- name: Build
run: source tools/ci.sh && ci_unix_longlong_build
run: tools/ci.sh unix_longlong_build
- name: Run main test suite
run: source tools/ci.sh && ci_unix_longlong_run_tests
run: tools/ci.sh unix_longlong_run_tests
- name: Print failures
if: failure()
run: tests/run-tests.py --print-failures
@@ -153,9 +153,9 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Build
run: source tools/ci.sh && ci_unix_float_build
run: tools/ci.sh unix_float_build
- name: Run main test suite
run: source tools/ci.sh && ci_unix_float_run_tests
run: tools/ci.sh unix_float_run_tests
- name: Print failures
if: failure()
run: tests/run-tests.py --print-failures
@@ -165,9 +165,9 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Build
run: source tools/ci.sh && ci_unix_gil_enabled_build
run: tools/ci.sh unix_gil_enabled_build
- name: Run main test suite
run: source tools/ci.sh && ci_unix_gil_enabled_run_tests
run: tools/ci.sh unix_gil_enabled_run_tests
- name: Print failures
if: failure()
run: tests/run-tests.py --print-failures
@@ -177,11 +177,11 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Install packages
run: source tools/ci.sh && ci_unix_clang_setup
run: tools/ci.sh unix_clang_setup
- name: Build
run: source tools/ci.sh && ci_unix_stackless_clang_build
run: tools/ci.sh unix_stackless_clang_build
- name: Run main test suite
run: source tools/ci.sh && ci_unix_stackless_clang_run_tests
run: tools/ci.sh unix_stackless_clang_run_tests
- name: Print failures
if: failure()
run: tests/run-tests.py --print-failures
@@ -191,11 +191,11 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Install packages
run: source tools/ci.sh && ci_unix_clang_setup
run: tools/ci.sh unix_clang_setup
- name: Build
run: source tools/ci.sh && ci_unix_float_clang_build
run: tools/ci.sh unix_float_clang_build
- name: Run main test suite
run: source tools/ci.sh && ci_unix_float_clang_run_tests
run: tools/ci.sh unix_float_clang_run_tests
- name: Print failures
if: failure()
run: tests/run-tests.py --print-failures
@@ -210,9 +210,9 @@ jobs:
with:
python-version: '3.11'
- name: Build
run: source tools/ci.sh && ci_unix_settrace_stackless_build
run: tools/ci.sh unix_settrace_stackless_build
- name: Run main test suite
run: source tools/ci.sh && ci_unix_settrace_stackless_run_tests
run: tools/ci.sh unix_settrace_stackless_run_tests
- name: Print failures
if: failure()
run: tests/run-tests.py --print-failures
@@ -222,11 +222,11 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Install packages
run: source tools/ci.sh && ci_unix_32bit_setup
run: tools/ci.sh unix_32bit_setup
- name: Build
run: source tools/ci.sh && ci_unix_repr_b_build
run: tools/ci.sh unix_repr_b_build
- name: Run main test suite
run: source tools/ci.sh && ci_unix_repr_b_run_tests
run: tools/ci.sh unix_repr_b_run_tests
- name: Print failures
if: failure()
run: tests/run-tests.py --print-failures
@@ -239,9 +239,9 @@ jobs:
with:
python-version: '3.8'
- name: Build
run: source tools/ci.sh && ci_unix_macos_build
run: tools/ci.sh unix_macos_build
- name: Run tests
run: source tools/ci.sh && ci_unix_macos_run_tests
run: tools/ci.sh unix_macos_run_tests
- name: Print failures
if: failure()
run: tests/run-tests.py --print-failures
@@ -252,11 +252,11 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Install packages
run: source tools/ci.sh && ci_unix_qemu_mips_setup
run: tools/ci.sh unix_qemu_mips_setup
- name: Build
run: source tools/ci.sh && ci_unix_qemu_mips_build
run: tools/ci.sh unix_qemu_mips_build
- name: Run main test suite
run: source tools/ci.sh && ci_unix_qemu_mips_run_tests
run: tools/ci.sh unix_qemu_mips_run_tests
- name: Print failures
if: failure()
run: tests/run-tests.py --print-failures
@@ -267,11 +267,11 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Install packages
run: source tools/ci.sh && ci_unix_qemu_arm_setup
run: tools/ci.sh unix_qemu_arm_setup
- name: Build
run: source tools/ci.sh && ci_unix_qemu_arm_build
run: tools/ci.sh unix_qemu_arm_build
- name: Run main test suite
run: source tools/ci.sh && ci_unix_qemu_arm_run_tests
run: tools/ci.sh unix_qemu_arm_run_tests
- name: Print failures
if: failure()
run: tests/run-tests.py --print-failures
@@ -282,11 +282,11 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Install packages
run: source tools/ci.sh && ci_unix_qemu_riscv64_setup
run: tools/ci.sh unix_qemu_riscv64_setup
- name: Build
run: source tools/ci.sh && ci_unix_qemu_riscv64_build
run: tools/ci.sh unix_qemu_riscv64_build
- name: Run main test suite
run: source tools/ci.sh && ci_unix_qemu_riscv64_run_tests
run: tools/ci.sh unix_qemu_riscv64_run_tests
- name: Print failures
if: failure()
run: tests/run-tests.py --print-failures
@@ -301,17 +301,17 @@ jobs:
with:
python-version: '3.11'
- name: Install packages
run: source tools/ci.sh && ci_unix_coverage_setup
run: tools/ci.sh unix_coverage_setup
- name: Build
run: source tools/ci.sh && ci_unix_sanitize_address_build
run: tools/ci.sh unix_sanitize_address_build
- name: Run main test suite
run: source tools/ci.sh && ci_unix_sanitize_address_run_tests
run: tools/ci.sh unix_sanitize_address_run_tests
- name: Test merging .mpy files
run: source tools/ci.sh && ci_unix_coverage_run_mpy_merge_tests
run: tools/ci.sh unix_coverage_run_mpy_merge_tests
- name: Build native mpy modules
run: source tools/ci.sh && ci_native_mpy_modules_build
run: tools/ci.sh native_mpy_modules_build
- name: Test importing .mpy generated by mpy_ld.py
run: source tools/ci.sh && ci_unix_coverage_run_native_mpy_tests
run: tools/ci.sh unix_coverage_run_native_mpy_tests
- name: Print failures
if: failure()
run: tests/run-tests.py --print-failures
@@ -326,17 +326,17 @@ jobs:
with:
python-version: '3.11'
- name: Install packages
run: source tools/ci.sh && ci_unix_coverage_setup
run: tools/ci.sh unix_coverage_setup
- name: Build
run: source tools/ci.sh && ci_unix_sanitize_undefined_build
run: tools/ci.sh unix_sanitize_undefined_build
- name: Run main test suite
run: source tools/ci.sh && ci_unix_sanitize_undefined_run_tests
run: tools/ci.sh unix_sanitize_undefined_run_tests
- name: Test merging .mpy files
run: source tools/ci.sh && ci_unix_coverage_run_mpy_merge_tests
run: tools/ci.sh unix_coverage_run_mpy_merge_tests
- name: Build native mpy modules
run: source tools/ci.sh && ci_native_mpy_modules_build
run: tools/ci.sh native_mpy_modules_build
- name: Test importing .mpy generated by mpy_ld.py
run: source tools/ci.sh && ci_unix_coverage_run_native_mpy_tests
run: tools/ci.sh unix_coverage_run_native_mpy_tests
- name: Print failures
if: failure()
run: tests/run-tests.py --print-failures

View File

@@ -23,11 +23,11 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Install packages
run: source tools/ci.sh && ci_webassembly_setup
run: tools/ci.sh webassembly_setup
- name: Build
run: source tools/ci.sh && ci_webassembly_build
run: tools/ci.sh webassembly_build
- name: Run tests
run: source tools/ci.sh && ci_webassembly_run_tests
run: tools/ci.sh webassembly_run_tests
- name: Print failures
if: failure()
run: tests/run-tests.py --print-failures

View File

@@ -146,6 +146,6 @@ jobs:
steps:
- uses: actions/checkout@v5
- name: Install packages
run: source tools/ci.sh && ci_windows_setup
run: tools/ci.sh windows_setup
- name: Build
run: source tools/ci.sh && ci_windows_build
run: tools/ci.sh windows_build

View File

@@ -52,14 +52,14 @@ jobs:
with:
key: zephyr
- name: Install packages
run: source tools/ci.sh && ci_zephyr_setup
run: tools/ci.sh zephyr_setup
- name: Install Zephyr
if: steps.cache_workspace.outputs.cache-hit != 'true'
run: source tools/ci.sh && ci_zephyr_install
run: tools/ci.sh zephyr_install
- name: Build
run: source tools/ci.sh && ci_zephyr_build
run: tools/ci.sh zephyr_build
- name: Run main test suite
run: source tools/ci.sh && ci_zephyr_run_tests
run: tools/ci.sh zephyr_run_tests
- name: Print failures
if: failure()
run: tests/run-tests.py --print-failures