From 99259f215aca7929a17e7f7429c14e8324a2c9f4 Mon Sep 17 00:00:00 2001 From: Kirill Isakov Date: Tue, 31 May 2022 20:20:13 +0600 Subject: [PATCH] CI: add check for paths over the 108-char limit --- .github/workflows/test.yml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index ad86e0f3..6490f2ac 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -125,6 +125,14 @@ jobs: CC: gcc-11 if: always() + - name: Check that very long paths work + run: | + meson setup "$WD" + meson test -C "$WD" --verbose + env: + WD: /tmp/tinc_testing_directory_with_a_very_long_path_which_goes_over_the_108_char_limit_on_unix_socket_file_paths + if: always() + - name: Archive test results run: sudo tar -caf tests.tar.gz /usr/local/etc continue-on-error: true -- 2.20.1