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 2024-01-23 17:18:27 +11:00
rodzic ce2058685b
commit 8eb658f654
2 zmienionych plików z 10 dodań i 0 usunięć

Wyświetl plik

@ -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

Wyświetl plik

@ -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