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

project_template/.github/workflows/test-publish.yaml

index b4c337a45913dba3d336897beb589234ad26355f..5c4ae126d6be9999d4e171b960a03acd5ea37947 100644 (file)
@@ -55,14 +55,21 @@ jobs:
       - name: Set TOXENV
         run: |
           import os, sys
+          ld_library_path = None
           if hasattr(sys, 'pypy_version_info'):
             toxenv = 'pypy3'
           else:
             pyver = '%d%d' % tuple(sys.version_info[:2])
+            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' % pyver
             if os.name == 'posix':
               toxenv += ',py%s-flake8' % pyver
           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')
           print(toxenv)
         shell: python