This commit is contained in:
Ken Van Hoeylandt 2026-02-09 00:29:36 +01:00
parent 96c68db0de
commit b6edd39539
2 changed files with 2 additions and 2 deletions

View File

@ -36,7 +36,7 @@ jobs:
submodules: recursive
- name: "Install Python Dependencies"
shell: bash
run: pip install lark pyyaml
run: pip install lark==1.3.1 pyyaml==6.0.3
- name: "Run Devicetree Tests"
shell: bash
working-directory: Buildscripts/DevicetreeCompiler/tests

View File

@ -51,7 +51,7 @@ add_custom_target(AlwaysRun
add_custom_command(
OUTPUT "${GENERATED_DIR}/devicetree.c"
"${GENERATED_DIR}/devicetree.h"
COMMAND pip install lark pyyaml
COMMAND pip install lark==1.3.1 pyyaml==6.0.3
COMMAND python "${CMAKE_SOURCE_DIR}/Buildscripts/DevicetreeCompiler/compile.py"
"${DEVICETREE_LOCATION}" "${GENERATED_DIR}"
WORKING_DIRECTORY "${CMAKE_SOURCE_DIR}"