Skip to content

Commit

Permalink
CI: Skip tests on Ubuntu Xenial
Browse files Browse the repository at this point in the history
Due meson error:
WARNING: You are using 'ANSI_X3.4-1968' which is not a a Unicode-compatible locale.
WARNING: You might see errors if you use UTF-8 strings as filenames, as strings, or as file contents.
WARNING: Please switch to a UTF-8 locale for your platform.

Link: mesonbuild/meson#2268

Signed-off-by: Petr Vorel <pvorel@suse.cz>
  • Loading branch information
pevik committed Jul 20, 2021
1 parent 3dff080 commit 9833cae
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,8 @@ jobs:
env:
CC: clang
EXTRA_BUILD_OPTS: "-DUSE_GETTEXT=false"
# meson error: not using Unicode-compatible locale (ANSI_X3.4-1968)
SKIP_TESTS: true

- container: "ubuntu:groovy"
env:
Expand Down Expand Up @@ -108,4 +110,4 @@ jobs:
run: ./build.sh install

- name: Run tests
run: ./build.sh test
run: if [ ! "$SKIP_TESTS" ]; then ./build.sh test; else echo "tests skipped"; fi

0 comments on commit 9833cae

Please sign in to comment.