Skip to content

Commit c3cd2a4

Browse files
committed
Update CI
Remove ANSI Escape sequences from test output
1 parent 885a106 commit c3cd2a4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.github/workflows/ci.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ jobs:
1717
sudo apt install -y nasm
1818
sudo apt install -y binutils
1919
- name: Run Tests
20-
run: bash ./tests/test.bash > tests/results.txt\
20+
# Remove ANSI escape codes from the output
21+
run: bash ./tests/test.bash | sed -r "s/\x1B\[[0-9;]*[JKmsu]//g" > tests/results.txt
2122
- name: Upload Test Artifacts
2223
if: always()
2324
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)