Skip to content

Commit 989168d

Browse files
Update
1 parent cb188ca commit 989168d

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

.github/workflows/build_examples.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ jobs:
6969
run: |
7070
cpackget add ./ARM.SDS.pdsc -a
7171
72-
- name: Copy example template to ${{ matrix.solution.dir }} folder
72+
- name: Copy example template to ./${{ matrix.solution.dir }} folder
7373
run: |
7474
mkdir -p ./${{ matrix.solution.dir }}
7575
cp -r ./template/. ./${{ matrix.solution.dir }}/
@@ -78,21 +78,21 @@ jobs:
7878
run: |
7979
mkdir -p ./${{ matrix.solution.dir }}/Board/$TARGET_BOARD
8080
cp -r "$(find /home/runner/.cache/arm/packs/Keil/${TARGET_BSP#*.} -type f -name "Board.clayer.yml" -exec dirname {} \; | head -n 1)"/* ./${{ matrix.solution.dir }}/Board/$TARGET_BOARD/
81-
ls -a -R ./${{ matrix.solution.dir }}/Board/$TARGET_BOARD/
81+
# ls -a -R ./${{ matrix.solution.dir }}/Board/$TARGET_BOARD/
8282
83-
- name: Copy layer/sdsio to ./${{ matrix.solution.dir }}/sdsio
83+
- name: Copy all layers from ./layer/sdsio to ./${{ matrix.solution.dir }}/sdsio
8484
run: |
8585
mkdir -p ./${{ matrix.solution.dir }}/sdsio
8686
cp -r ./layer/sdsio/* ./${{ matrix.solution.dir }}/sdsio/
87-
ls -a -R ./${{ matrix.solution.dir }}/sdsio/
87+
# ls -a -R ./${{ matrix.solution.dir }}/sdsio/
8888
89-
- name: Insert target type for ${{ env.TARGET_BOARD }} board in SDS.csolution.yml
89+
- name: Insert target type for ${{ env.TARGET_BOARD }} board into SDS.csolution.yml file
9090
working-directory: ./${{ matrix.solution.dir }}
9191
run: |
9292
sed -i "/- type: \\\${Name}/c\ - type: ${TARGET_TYPE}\\n board: ${TARGET_BOARD}\\n variables:\\n - Board-Layer: \$SolutionDir()\$/Board/${TARGET_BOARD}/Board.clayer.yml\\n - SDSIO-Layer: \\\${{ matrix.solution.sdsio_layer_file }}" SDS.csolution.yml
93-
cat ./SDS.csolution.yml
93+
# cat ./SDS.csolution.yml
9494
95-
- name: Build ./${{ matrix.solution.dir }} all projects in SDS.csolution.yml
95+
- name: Build all project/targets/build combinations from ./${{ matrix.solution.dir }}/SDS.csolution.yml
9696
working-directory: ./${{ matrix.solution.dir }}
9797
run: |
9898
cbuild ./SDS.csolution.yml --packs --update-rte --toolchain AC6

0 commit comments

Comments
 (0)