summaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorThomas Waldmann <tw@waldmann-edv.de>2020-11-03 23:33:06 +0100
committerThomas Waldmann <tw@waldmann-edv.de>2020-11-04 01:20:57 +0100
commit0950d23e4dde957cd71f4b03a6386336977fcce7 (patch)
treea83658d81be00ed327a964be03623a0d980917c1 /.github
parentcd9e173967e75150b18a8224de94552053af5466 (diff)
test fuse2/fuse3
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/ci.yml22
1 files changed, 17 insertions, 5 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml
index 3cce12083..50b9aa4d9 100644
--- a/.github/workflows/ci.yml
+++ b/.github/workflows/ci.yml
@@ -49,17 +49,29 @@ jobs:
needs: lint
strategy:
matrix:
- os: [ubuntu-20.04]
- python-version: [3.6, 3.7, 3.8, 3.9]
include:
+ - os: ubuntu-20.04
+ python-version: 3.6
+ toxenv: py36-fuse2
+ - os: ubuntu-20.04
+ python-version: 3.7
+ toxenv: py37-fuse2
+ - os: ubuntu-20.04
+ python-version: 3.8
+ toxenv: py38-fuse3
+ - os: ubuntu-20.04
+ python-version: 3.9
+ toxenv: py39-fuse3
- os: macos-latest
- # note: it seems that 3.7 and 3.8 are currently broken,
+ # note: it seems that 3.8 and 3.9 are currently broken,
# neverending RuntimeError crashes...
python-version: 3.7
+ toxenv: py37-fuse2
env:
# Configure pkg-config to use OpenSSL from Homebrew
PKG_CONFIG_PATH: /usr/local/opt/openssl@1.1/lib/pkgconfig
+ TOXENV: ${{ matrix.toxenv }}
runs-on: ${{ matrix.os }}
@@ -98,7 +110,7 @@ jobs:
brew install zstd || brew upgrade zstd
brew install lz4 || brew upgrade lz4
brew install openssl@1.1 || brew upgrade openssl@1.1
- #brew install Caskroom/cask/osxfuse || brew upgrade Caskroom/cask/osxfuse # Required for Python llfuse module
+ brew install Caskroom/cask/osxfuse || brew upgrade Caskroom/cask/osxfuse # Required for Python llfuse module
- name: Install Python requirements
run: |
@@ -112,4 +124,4 @@ jobs:
run: |
# do not use fakeroot, but run as root. avoids the dreaded EISDIR sporadic failures. see #2482.
#sudo -E bash -c "tox -e py"
- tox -e py
+ tox --skip-missing-interpreters