Skip to content

iut_zephyr_build

iut_zephyr_build #108

name: iut_zephyr_build
on:
pull_request:
branches: [ main ]
schedule:
- cron: '0 20 * * 2,6'
permissions: read-all
jobs:
iut_zephyr_build:
runs-on: ubuntu-22.04
container:
image: ghcr.io/zephyrproject-rtos/ci-repo-cache:v0.28.7.20251127
steps:
- name: Apply container owner mismatch workaround
run: |
# FIXME: The owner UID of the GITHUB_WORKSPACE directory may not
# match the container user UID because of the way GitHub
# Actions runner is implemented. Remove this workaround when
# GitHub comes up with a fundamental fix for this problem.
git config --global --add safe.directory ${GITHUB_WORKSPACE}
- name: Checkout Zephyr
run: |
west init -m https://github.com/kwd-doodling/zephyr-upstream.git --mr ci_intel_hal
echo "ZEPHYR_SDK_INSTALL_DIR=/opt/toolchains/zephyr-sdk-$( cat zephyr/SDK_VERSION )" >> $GITHUB_ENV
- name: Checkout Intel HAL
uses: actions/checkout@v4
with:
path: modules/hal/intel
- name: Build IUT Test for ISH 5.4.1
run:
west build -b intel_ish_5_4_1 modules/hal/intel/zephyr/iut_test -d iut_build_5_4_1
- name: Build IUT Test for ISH 5.6.0
run:
west build -b intel_ish_5_6_0 modules/hal/intel/zephyr/iut_test -d iut_build_5_6_0
- name: Build IUT Test for ISH 5.8.0
run:
west build -b intel_ish_5_8_0 modules/hal/intel/zephyr/iut_test -d iut_build_5_8_0