From 8eb658f654de345c935886b47e2e31b1dafeb862 Mon Sep 17 00:00:00 2001 From: Damien George Date: Tue, 23 Jan 2024 17:18:27 +1100 Subject: [PATCH] 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 --- .github/workflows/ports_mimxrt.yml | 5 +++++ .github/workflows/ports_rp2.yml | 5 +++++ 2 files changed, 10 insertions(+) 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