summaryrefslogtreecommitdiffstatshomepage
path: root/.github
diff options
context:
space:
mode:
authorDamien George <damien@micropython.org>2024-01-23 17:18:27 +1100
committerDamien George <damien@micropython.org>2024-01-24 11:07:00 +1100
commit8eb658f654de345c935886b47e2e31b1dafeb862 (patch)
tree187f553b877beb4c1c68832838aaa4c974036b69 /.github
parentce2058685b9ca2278849b3117c2461f6b6fc727f (diff)
downloadmicropython-8eb658f654de345c935886b47e2e31b1dafeb862.tar.gz
micropython-8eb658f654de345c935886b47e2e31b1dafeb862.zip
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>
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ports_mimxrt.yml5
-rw-r--r--.github/workflows/ports_rp2.yml5
2 files changed, 10 insertions, 0 deletions
diff --git a/.github/workflows/ports_mimxrt.yml b/.github/workflows/ports_mimxrt.yml
index 614d745807..9e782bf63b 100644
--- a/.github/workflows/ports_mimxrt.yml
+++ b/.github/workflows/ports_mimxrt.yml
@@ -20,8 +20,13 @@ concurrency:
jobs:
build:
runs-on: ubuntu-20.04
+ defaults:
+ run:
+ working-directory: 'micropython repo' # test build with space in path
steps:
- uses: actions/checkout@v4
+ with:
+ path: 'micropython repo'
- name: Install packages
run: source tools/ci.sh && ci_mimxrt_setup
- name: Build
diff --git a/.github/workflows/ports_rp2.yml b/.github/workflows/ports_rp2.yml
index 5741b75d2a..748f38e143 100644
--- a/.github/workflows/ports_rp2.yml
+++ b/.github/workflows/ports_rp2.yml
@@ -20,8 +20,13 @@ concurrency:
jobs:
build:
runs-on: ubuntu-latest
+ defaults:
+ run:
+ working-directory: 'micropython repo' # test build with space in path
steps:
- uses: actions/checkout@v4
+ with:
+ path: 'micropython repo'
- name: Install packages
run: source tools/ci.sh && ci_rp2_setup
- name: Build