diff options
author | Damien George <damien@micropython.org> | 2024-01-23 17:18:27 +1100 |
---|---|---|
committer | Damien George <damien@micropython.org> | 2024-01-24 11:07:00 +1100 |
commit | 8eb658f654de345c935886b47e2e31b1dafeb862 (patch) | |
tree | 187f553b877beb4c1c68832838aaa4c974036b69 /.github | |
parent | ce2058685b9ca2278849b3117c2461f6b6fc727f (diff) | |
download | micropython-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.yml | 5 | ||||
-rw-r--r-- | .github/workflows/ports_rp2.yml | 5 |
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 |