Skip to content

Add initial H563ZI test results #50

Add initial H563ZI test results

Add initial H563ZI test results #50

Workflow file for this run

# Example GitHub Actions workflow which provides a CI build for your Mbed CE project.
name: Test that test cases compile
on: push
jobs:
compile:
runs-on: ubuntu-latest
container: ghcr.io/armmbed/mbed-os-env:master-latest
strategy:
matrix:
mbed_target:
# This is just one of the targets supported by these test cases, but it should
# be sufficient for making sure it compiles
- NUCLEO_L452RE_P
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Install python3-venv
run: |
apt-get update
apt-get install -y python3-venv
- name: Install Python dependencies
run: |
python3 -m pip install -r CI-Shield-Tests/mbed-os/tools/requirements.txt
- name: Build project for ${{ matrix.mbed_target }}
run: |
cd CI-Shield-Tests
mkdir build && cd build
cmake .. -GNinja -DMBED_TARGET=${{ matrix.mbed_target }} -DMBED_GREENTEA_SERIAL_PORT=/dev/ttyDUMMY
ninja