Browse Source

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>
pull/13501/head
Damien George 10 months ago
parent
commit
8eb658f654
  1. 5
      .github/workflows/ports_mimxrt.yml
  2. 5
      .github/workflows/ports_rp2.yml

5
.github/workflows/ports_mimxrt.yml

@ -20,8 +20,13 @@ concurrency:
jobs: jobs:
build: build:
runs-on: ubuntu-20.04 runs-on: ubuntu-20.04
defaults:
run:
working-directory: 'micropython repo' # test build with space in path
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with:
path: 'micropython repo'
- name: Install packages - name: Install packages
run: source tools/ci.sh && ci_mimxrt_setup run: source tools/ci.sh && ci_mimxrt_setup
- name: Build - name: Build

5
.github/workflows/ports_rp2.yml

@ -20,8 +20,13 @@ concurrency:
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
defaults:
run:
working-directory: 'micropython repo' # test build with space in path
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
with:
path: 'micropython repo'
- name: Install packages - name: Install packages
run: source tools/ci.sh && ci_rp2_setup run: source tools/ci.sh && ci_rp2_setup
- name: Build - name: Build

Loading…
Cancel
Save