Skip to content

Commit 8ad81ec

Browse files
committed
test path?
1 parent 7531bba commit 8ad81ec

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

.github/workflows/bsp_buildings.yml

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -439,9 +439,17 @@ jobs:
439439
- name: Install Cmake & Ninja
440440
uses: lukka/get-cmake@latest
441441
with:
442-
cmakeVersion: latestrc
442+
cmakeVersion: latest
443443
ninjaVersion: latest
444444

445+
- name: test cmake
446+
shell: bash
447+
run: |
448+
which cmake
449+
cmake --version
450+
which ninja
451+
ninja --version
452+
445453
- name: Install Arm ToolChains
446454
if: ${{ matrix.legs.RTT_TOOL_CHAIN == 'sourcery-arm' && success() }}
447455
shell: bash

tools/ci/bsp_buildings.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ def run_cmd(cmd, output_info=True):
2121
res = 0
2222

2323
if output_info:
24-
res = os.system(cmd + " > output.txt 2>&1")
24+
res = os.system('/bin/bash -c' + cmd + " > output.txt 2>&1")
2525
else:
2626
res = os.system(cmd + " > /dev/null 2>output.txt")
2727

0 commit comments

Comments
 (0)