Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix annoying warning when running tests on some macOS machines #3346

Merged
merged 2 commits into from
Jul 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/ci-idris2-and-libs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -448,7 +448,7 @@ jobs:
name: windows-installed-bootstrapped-idris2-chez
path: ${{ env.IDRIS_PREFIX }}
- name: Install build dependencies
uses: Bogdanp/setup-racket@v1.4
uses: Bogdanp/setup-racket@v1.11
with:
variant: 'CS'
version: 'stable'
Expand Down
6 changes: 5 additions & 1 deletion tests/testutils.sh
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,11 @@ if [ -z "$PREFIX_CHANGED" ] && [ -n "$IDRIS2_PREFIX" ]; then
fi

# Set the most neutral locale for reproducibility
export LC_ALL=C.UTF-8
if [ "$OS" = "darwin" ]; then
export LANG=C LC_CTYPE=UTF-8
else
export LC_ALL=C.UTF-8
fi

# Remove test directory from output
# Useful for consistency of output between machines
Expand Down
Loading