Skip to content

Commit

Permalink
clear escape sequences
Browse files Browse the repository at this point in the history
  • Loading branch information
andrei-near committed Sep 25, 2024
1 parent 126b02c commit 9b7c0d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/nayduck_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
run: |
set -x
NEW_TEST=$(python3 ./scripts/nayduck.py --test-file nightly/ci.txt)
RUN_ID="$(echo $NEW_TEST | /usr/bin/grep https | sed -E 's|.*\/run\/([0-9]+)|\1|')"
RUN_ID="$(echo $NEW_TEST | grep https | sed -E 's|.*\/run\/([0-9]+)|\1|' | sed 's/\x1B\[[0-9;]\{1,\}[A-Za-z]//g')"
URL="https://nayduck.nearone.org/api/run/$RUN_ID"
echo $RUN_ID | xxd -p
sleep 10
Expand Down

0 comments on commit 9b7c0d3

Please sign in to comment.