Skip to content

Commit

Permalink
Fix 33
Browse files Browse the repository at this point in the history
  • Loading branch information
ni4 committed Nov 4, 2024
1 parent 3482f20 commit 9120cfa
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .github/workflows/windows-msys2.yml
Original file line number Diff line number Diff line change
Expand Up @@ -128,14 +128,20 @@ jobs:
- name: Test
run: |
# Change codepage to utf-8
cat /d/a/_temp/setup-msys2/msys2.CMD
echo $PATH
echo "Lang:"
echo $LANG || true
echo "LC_ALL:"
echo $LC_ALL || true
chcp 65001 || true
echo "chcp.com:"
chcp.com 65001 || true
echo "cmd:"
cmd /c chcp 65001 || true
mkdir -p "build/Testing/Temporary"
cp "cmake/CTestCostData.txt" "build/Testing/Temporary"
export LC_ALL="en_US.UTF-8"
export LANG="en_US.UTF-8"
export PATH="$PWD/build/src/lib:$PATH"
export RNP_LOG_CONSOLE=1
ctest --parallel ${{ env.CORES }} --test-dir build -C Debug --output-on-failure
Expand Down

0 comments on commit 9120cfa

Please sign in to comment.