CI: add check for paths over the 108-char limit
authorKirill Isakov <bootctl@gmail.com>
Tue, 31 May 2022 14:20:13 +0000 (20:20 +0600)
committerKirill Isakov <bootctl@gmail.com>
Tue, 31 May 2022 14:21:37 +0000 (20:21 +0600)
.github/workflows/test.yml

index ad86e0f..6490f2a 100644 (file)
@@ -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