Skip to content

Commit 53b2817

Browse files
committed
Fix the quotes
1 parent b989f2b commit 53b2817

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/raspberry-pi.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -77,9 +77,9 @@ jobs:
7777
echo "Listing contents of build directory:"
7878
ls -l
7979
80-
# Running 'make' under QEMU inside GitHub Actions has shown instability,
80+
# Running -make- under QEMU inside GitHub Actions has shown instability,
8181
# with random segmentation faults occurring sporadically. This could be
82-
# due to QEMU's emulation overhead, memory constraints, or transient
82+
# due to QEMU-s emulation overhead, memory constraints, or transient
8383
# issues in the GitHub-hosted environment. To mitigate these failures,
8484
# we retry the build up to 5 times before considering it a hard failure.
8585
@@ -90,7 +90,7 @@ jobs:
9090
echo "Attempt $attempt of $max_retries..."
9191
9292
set +e # Temporarily disable exit on error
93-
make
93+
make -j
9494
exit_code=$?
9595
set -e # Re-enable exit on error
9696

0 commit comments

Comments
 (0)