]> git.phdru.name Git - sqlconvert.git/commitdiff
CI(GHActions): Set `$LD_LIBRARY_PATH`
authorOleg Broytman <phd@phdru.name>
Thu, 8 Dec 2022 12:38:39 +0000 (15:38 +0300)
committerOleg Broytman <phd@phdru.name>
Thu, 8 Dec 2022 12:38:39 +0000 (15:38 +0300)
Python 2.7 on Linux requires `$LD_LIBRARY_PATH`.

.github/workflows/run-tests.yaml

index a4d5fd791446b9600b36deb75c844409044c7c7e..4777a9fb4945dcf5e8c5d2f0f4949a8e6bfbd4b5 100644 (file)
@@ -59,6 +59,7 @@ jobs:
       - name: Set TOXENV
         run: |
           import os, sys
+          ld_library_path = None
           pyver = '%d%d' % tuple(sys.version_info[:2])
           toxenv = 'py%s' % pyver
           toxenv += ',py%s-sqlite' % pyver
@@ -66,10 +67,15 @@ jobs:
             toxenv += '-w32'
           toxenv += ',py%s-postgres' % pyver
           if os.name == 'posix':
+            if pyver == '27':  # Python 2.7 on Linux requires `$LD_LIBRARY_PATH`
+              ld_library_path = os.path.join(
+                os.path.dirname(os.path.dirname(sys.executable)), 'lib')
             toxenv += ',py%s-flake8' % pyver
           elif os.name == 'nt':
             toxenv += '-w32'
           with open(os.environ['GITHUB_ENV'], 'a') as f:
+            if ld_library_path:
+              f.write('LD_LIBRARY_PATH=' + ld_library_path + '\n')
             f.write('TOXENV=' + toxenv + '\n')
             f.write('PGPASSWORD=test\n')
         shell: python