]> git.phdru.name Git - sqlconvert.git/blobdiff - .github/workflows/run-tests.yaml
CI(GHActions): Set `$LD_LIBRARY_PATH`
[sqlconvert.git] / .github / workflows / run-tests.yaml
index 4bd43ad584db7cd639a2edc8b303cfacb411b8ba..4777a9fb4945dcf5e8c5d2f0f4949a8e6bfbd4b5 100644 (file)
@@ -8,7 +8,7 @@ jobs:
     strategy:
       matrix:
         os: [ubuntu-latest, windows-latest]
-        python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10"]
+        python-version: ["2.7", "3.5", "3.6", "3.7", "3.8", "3.9", "3.10", "3.11"]
         include:
         - os: ubuntu-latest
           os-name: Linux
@@ -35,11 +35,16 @@ jobs:
 
       # Setup Python/pip
       - uses: actions/checkout@v2
-      - uses: actions/setup-python@v2
+      - uses: s-weigand/setup-conda@v1
         with:
           python-version: ${{ matrix.python-version }}
+        if: ${{ runner.os == 'Linux' && matrix.python-version != '3.11' }}
+      - uses: actions/setup-python@v4
+        with:
+          python-version: ${{ matrix.python-version }}
+        if: ${{ runner.os != 'Linux' || matrix.python-version == '3.11' }}
       - name: Cache pip
-        uses: actions/cache@v2
+        uses: actions/cache@v3
         with:
           path: ${{ matrix.pip-cache-path }}
           key: ${{ runner.os }}-pip
@@ -54,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
@@ -61,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
@@ -72,4 +83,5 @@ jobs:
       - name: Run tox
         run: |
           python -c "import os; print(os.environ['TOXENV'])"
+          tox --version
           tox