diff options
author | Stefan Behnel <stefan_ml@behnel.de> | 2022-12-13 10:33:48 +0100 |
---|---|---|
committer | Stefan Behnel <stefan_ml@behnel.de> | 2022-12-13 10:37:11 +0100 |
commit | 487a1943167909839c838c6d837ec4c792778baa (patch) | |
tree | ad40f5bc32d913cb4f9aee2accebac000474fa4b | |
parent | fc53d6ff9d8b6770e45dccc4bd88fff2c92cd38a (diff) | |
download | python-lxml-487a1943167909839c838c6d837ec4c792778baa.tar.gz |
CI: exclude non-static Windows jobs.
-rw-r--r-- | .github/workflows/ci.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 68b6a43c..ff604351 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -103,10 +103,11 @@ jobs: - os: macos-latest allowed_failure: true # Unicode parsing fails in Py3 + exclude: # Windows sub-jobs # ============== - os: windows-2019 - env: [{ STATIC_DEPS: true }] # always static + env: { STATIC_DEPS: false } # always static # This defaults to 360 minutes (6h) which is way too long and if a test gets stuck, it can block other pipelines. # From testing, the runs tend to take ~3 minutes, so a limit of 20 minutes should be enough. This can always be |