Skip to content

Commit

Permalink
adjust escape characters
Browse files Browse the repository at this point in the history
  • Loading branch information
ajm-asiaa committed Dec 13, 2023
1 parent fc4382c commit 7476ea1
Showing 1 changed file with 10 additions and 8 deletions.
18 changes: 10 additions & 8 deletions .github/workflows/icd_tests_linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -161,16 +161,17 @@ jobs:
--debug_no_auth \
--no_frontend \
--no_database \
--no_log \
--verbosity=5 >> $LOG_FILE 2>&1 & \
CARTA_BACKEND_PID=\$(pgrep -f \"carta_backend.*${{ matrix.port }}\" | head -n 1) && \
CARTA_BACKEND_PID=\$(pgrep -f 'carta_backend.*${{ matrix.port }}' | head -n 1) && \
echo 'carta_backend started with PID' \$CARTA_BACKEND_PID && \
# Run the ICD tests
cd $BUILD_DIR/ICD-RxJS && \
pwd && \
cat $TEST_STAGE && \
while IFS= read -r test_file || [[ -n "\$test_file\" ]]; do
CI=true npm test -- \"\$test_file\"
done < \"$TEST_STAGE\" && \
while IFS= read -r test_file || [[ -n "\$test_file" ]]; do
CI=true npm test -- "\$test_file"
done < $TEST_STAGE && \
# Stop the carta_backend
kill \$CARTA_BACKEND_PID"
Expand Down Expand Up @@ -227,15 +228,16 @@ jobs:
--debug_no_auth \
--no_frontend \
--no_database \
--no_log \
--verbosity=5 >> $LOG_FILE 2>&1 & \
CARTA_BACKEND_PID=\$(pgrep -f \"carta_backend.*${{ matrix.port }}\" | head -n 1) && \
CARTA_BACKEND_PID=\$(pgrep -f 'carta_backend.*${{ matrix.port }}' | head -n 1) && \
echo 'carta_backend started with PID' \$CARTA_BACKEND_PID && \
# Run the ICD tests
cd $BUILD_DIR/ICD-RxJS && \
pwd && \
cat $TEST_STAGE && \
while IFS= read -r test_file || [[ -n "\$test_file\" ]]; do
CI=true npm test -- \"\$test_file\"
done < \"$TEST_STAGE\" && \
while IFS= read -r test_file || [[ -n "\$test_file" ]]; do
CI=true npm test -- "\$test_file"
done < $TEST_STAGE && \
# Stop the carta_backend
kill \$CARTA_BACKEND_PID"

0 comments on commit 7476ea1

Please sign in to comment.