add Wizard examples

This commit is contained in:
Sergio R. Caprile 2024-09-26 19:02:32 -03:00
parent 399291d783
commit 882dd1f3a7
3 changed files with 5 additions and 6 deletions

View File

@ -484,7 +484,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with: { fetch-depth: 2 }
- run: echo # nothing specific to install or do
- run: sudo pip install yq
- run: cd test/cube && make
zephyr_examples:

View File

@ -337,7 +337,7 @@ jobs:
- run: |
if ./test/match_changed_files.sh '^src|examples/stm32/nucleo-*-cube-*'; then
echo GO=1 >> $GITHUB_ENV
# nothing specific to install or do
sudo pip install yq
fi
- if: ${{ env.GO == 1 }}
run: cd test/cube && make

View File

@ -2,15 +2,14 @@ ROOT ?= $(realpath $(CURDIR)/../..)
PROJECTS ?= $(wildcard ../../examples/stm32/nucleo-*-cube-*)
TARGET ?= Debug
DOCKER = docker run --rm -v $(ROOT):$(ROOT) -v $(CURDIR):/root -w $(CURDIR)
IMAGE ?= springrockconsulting/stm32cubeide:v1
# image author did not set path, so a hardcoded reference to a variable name dir is needed
PATHTO ?= /opt/st/stm32cubeide_1.12.0/
IMAGE ?= scaprile/cubeozone
# set PATHTO if image author did not set path
all: $(PROJECTS)
$(DOCKER) $(IMAGE) $(PATHTO)headless-build.sh -data workspace -removeAll workspace
$(PROJECTS): FORCE
$(DOCKER) $(IMAGE) $(PATHTO)headless-build.sh -data workspace -import $@ -cleanBuild $(@F)/$(TARGET)
(make -C $@ && sudo make -C $@ clean) || $(DOCKER) $(IMAGE) $(PATHTO)headless-build.sh -data workspace -import $@ -cleanBuild $(@F)/$(TARGET)
FORCE: