Skip to content

Commit a9d74a4

Browse files
fixup! gh-127432: Add CI job to cross build Python
1 parent 8c1c74e commit a9d74a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/build.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -532,7 +532,7 @@ jobs:
532532
- name: Install Dependencies
533533
run: sudo ./.github/workflows/posix-deps-apt.sh
534534
- name: Configure host build
535-
run: ./configure --prefix "$PWD/../build/host-python"
535+
run: ./configure --prefix="$PWD/../build/host-python"
536536
- name: Install host Python
537537
run: make -j8 install
538538
- name: Run test subset with host build
@@ -541,7 +541,7 @@ jobs:
541541
- name: Clean up build
542542
run: make -j clean
543543
- name: Configure cross build
544-
run: ./configure --prefix "$PWD/../build/cross-python" --with-build-python "$PWD/../build/host-python/bin/python3"
544+
run: ./configure --prefix="$PWD/../build/cross-python" --with-build-python="$PWD/../build/host-python/bin/python3"
545545
- name: Install cross Python
546546
run: make -j8 install
547547
- name: Run test subset with host build

0 commit comments

Comments
 (0)