Skip to content

Commit 8eb658f

Browse files
committed
github/workflows: Run mimxrt and rp2 CI with space in repository path.
To test building with make and cmake when there is a space in the path. Signed-off-by: Damien George <damien@micropython.org>
1 parent ce20586 commit 8eb658f

2 files changed

Lines changed: 10 additions & 0 deletions

File tree

.github/workflows/ports_mimxrt.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,13 @@ concurrency:
2020
jobs:
2121
build:
2222
runs-on: ubuntu-20.04
23+
defaults:
24+
run:
25+
working-directory: 'micropython repo' # test build with space in path
2326
steps:
2427
- uses: actions/checkout@v4
28+
with:
29+
path: 'micropython repo'
2530
- name: Install packages
2631
run: source tools/ci.sh && ci_mimxrt_setup
2732
- name: Build

.github/workflows/ports_rp2.yml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,13 @@ concurrency:
2020
jobs:
2121
build:
2222
runs-on: ubuntu-latest
23+
defaults:
24+
run:
25+
working-directory: 'micropython repo' # test build with space in path
2326
steps:
2427
- uses: actions/checkout@v4
28+
with:
29+
path: 'micropython repo'
2530
- name: Install packages
2631
run: source tools/ci.sh && ci_rp2_setup
2732
- name: Build

0 commit comments

Comments
 (0)