]> git.phdru.name Git - mimedecode.git/commitdiff
CI(GHActions): Set `$LD_LIBRARY_PATH` 3.1.0.post4
authorOleg Broytman <phd@phdru.name>
Wed, 7 Dec 2022 14:44:19 +0000 (17:44 +0300)
committerOleg Broytman <phd@phdru.name>
Mon, 10 Jul 2023 17:14:42 +0000 (20:14 +0300)
Python 2.7 on Linux requires `$LD_LIBRARY_PATH`.

.github/workflows/run-tests.yaml
mimedecode/__version__.py

index 7577e272adbbb68f3fbfc3245a412420f9fb88a7..dec98d8b2f18a672d3710ecad0ccd3070fd51d53 100644 (file)
@@ -43,16 +43,22 @@ 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
           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')
         shell: python
 
-
       - name: Run tox targets for ${{ matrix.python-version }}
         run: |
           python -c "import os; print(os.environ['TOXENV'])"
index 38edecc2bf1667ab7c19994984b31665a28b1079..0f085545e1fb76eabee4bb7117eb8e63398ee1e1 100644 (file)
@@ -1,4 +1,4 @@
-__version__ = "3.1.0.post3"
+__version__ = "3.1.0.post4"
 __author__ = "Oleg Broytman <phd@phdru.name>"
 __copyright__ = "Copyright (C) 2001-2022 PhiloSoft Design"
 __license__ = "GNU GPL"