testing #43
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: Ceedling Unit Tests | |
on: | |
push: | |
branches: [ master,anan_zephyr_test ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
run_tests: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
path: ucxclient | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.11 | |
- name: Copy west.yaml | |
shell: bash | |
run: | | |
ls ucxclient | |
cp ucxclient/zephyr/west.yml ucxclient/ | |
- name: Setup Zephyr project | |
uses: zephyrproject-rtos/action-zephyr-setup@v1 | |
with: | |
app-path: ucxclient | |
toolchains: x86_64-zephyr-elf | |
- name: Build firmware | |
working-directory: ucxclient/ | |
shell: bash | |
run: | | |
pwd | |
ls -a | |
echo "next" | |
ls -a .. | |
export ZEPHYR_BASE=/home/runner/work/ucxclient/ucxclient/zephyr | |
west build -b qemu_x86 zephyr/http_example |