Summary
Jobs
build-greentea (LPC1768, full)
build-greentea (LPC546XX, full)
build-greentea (MIMXRT1060_EVK, full)
build-greentea (MIMXRT1170_EVK, full)
build-greentea (K64F, full)
build-greentea (KL43Z, full)
build-greentea (KW41Z, full)
build-greentea (NUCLEO_F091RC, full)
build-greentea (NUCLEO_F103RB, baremetal)
build-greentea (NUCLEO_F207ZG, full)
build-greentea (NUCLEO_F303RE, full)
build-greentea (NUCLEO_F429ZI, full)
build-greentea (NUCLEO_F767ZI, full)
build-greentea (NUCLEO_G031K8, baremetal)
build-greentea (NUCLEO_G431RB, full)
build-greentea (NUCLEO_H563ZI, full)
build-greentea (NUCLEO_H745ZI_Q_CM7, full)
build-greentea (DISCO_L072CZ_LRWAN1, baremetal)
build-greentea (XDOT_L151CC, full)
build-greentea (DISCO_L4R9I, full)
build-greentea (DISCO_L562QE, full)
build-greentea (B_U585I_IOT02A, full)
build-greentea (NUCLEO_WB55RG, full)
build-greentea (NUCLEO_WL55JC, full)
build-greentea (MAX32625MBED, full)
build-greentea (XDOT_MAX32670, full)
build-greentea (NUMAKER_PFM_NANO130, baremetal)
build-greentea (NUMAKER_PFM_M487, full)
build-greentea (NU_M2354, full)
build-greentea (S1SBP6A, full)
build-greentea (NRF52840_DK, full)
build-greentea (ARDUINO_NICLA_SENSE_ME, full)
build-greentea (TMPM4G9, full)
build-greentea (GR_MANGO, full)
build-greentea (RZ_A1H, full)
build-greentea (SFE_ARTEMIS_DK, full)
build-greentea (CY8CKIT_062S2_43012, full)
build-greentea (CYTFM_064B0S2_4343W, full)
build-greentea (EV_COG_AD4050LZ, full)
build-greentea (GD32_F307VG, full)
build-greentea (GD32_F450ZI, full)
build-greentea (EFM32GG11_STK3701, full)
build-greentea (RASPBERRY_PI_PICO, full)
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: test building greentea tests with cmake
on: [pull_request]
jobs:
build-greentea-cmake:
runs-on: ubuntu-latest
container: ghcr.io/armmbed/mbed-os-env:master-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install python3-venv
run: |
apt-get update
apt-get install -y python3-venv
- name: Build NUCLEO_G031K8 with baremetal profile
run: |
rm -rf __build
cmake -S . -B __build -GNinja -DCMAKE_CTEST_ARGUMENTS="--output-on-failure;-V" -DMBED_BUILD_GREENTEA_TESTS=ON -DMBED_GREENTEA_TEST_BAREMETAL=ON -DMBED_GREENTEA_SERIAL_PORT=/dev/ttyDUMMY -DMBED_TARGET=NUCLEO_G031K8 -DMBED_APP_JSON_PATH=TESTS/configs/baremetal.json
cmake --build __build
- name: Build ARM_MUSCA_S1 with full profile
run: |
rm -rf __build
cmake -S . -B __build -GNinja -DCMAKE_CTEST_ARGUMENTS="--output-on-failure;-V" -DMBED_BUILD_GREENTEA_TESTS=ON -DMBED_GREENTEA_SERIAL_PORT=/dev/ttyDUMMY -DMBED_TARGET=ARM_MUSCA_S1
cmake --build __build
You can’t perform that action at this time.