diff options
author | Darren Kulp <darren@kulp.ch> | 2020-06-19 20:12:05 -0700 |
---|---|---|
committer | Emilio Cobos Álvarez <emilio@crisal.io> | 2022-03-15 03:53:10 +0100 |
commit | d6714c6be67cd463ebbbfdb19d6b4c1daee9cbfa (patch) | |
tree | 6e4793e6f0ff8eba6578f452f563c9a7fc345496 | |
parent | 638729fdbadfa4661553bb011b34f47058e26257 (diff) |
tests: Stop testing libclang 4.0
-rw-r--r-- | .github/workflows/bindgen.yml | 10 | ||||
-rw-r--r-- | appveyor.yml | 6 |
2 files changed, 1 insertions, 15 deletions
diff --git a/.github/workflows/bindgen.yml b/.github/workflows/bindgen.yml index e8cd10bf..32a5287d 100644 --- a/.github/workflows/bindgen.yml +++ b/.github/workflows/bindgen.yml @@ -99,7 +99,7 @@ jobs: - debian: null cross: null rust: null - llvm_version: ["4.0", "5.0", "9.0"] + llvm_version: ["5.0", "9.0"] main_tests: [1] release_build: [0, 1] no_default_features: [0, 1] @@ -109,14 +109,6 @@ jobs: feature_extra_asserts: [0] feature_testing_only_docs: [0] - exclude: - # 4.0 is too old to support regular dynamic linking, so this - # is not expected to work. - - os: ubuntu-latest - llvm_version: "4.0" - no_default_features: 1 - feature_runtime: 0 - include: # Test with extra asserts + docs just with latest llvm versions to # prevent explosion diff --git a/appveyor.yml b/appveyor.yml index 51129cdc..62efeea2 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,18 +3,12 @@ environment: RUST_CHANNEL: "%Configuration%" matrix: - TARGET: gnu - LLVM_VERSION: 4.0.0-1 - BINDGEN_FEATURES: testing_only_libclang_4 - - TARGET: gnu LLVM_VERSION: 5.0.0-1 BINDGEN_FEATURES: testing_only_libclang_5 - TARGET: gnu LLVM_VERSION: 9.0.0-1 BINDGEN_FEATURES: testing_only_libclang_9 - TARGET: msvc - LLVM_VERSION: 4.0.0 - BINDGEN_FEATURES: testing_only_libclang_4 - - TARGET: msvc LLVM_VERSION: 5.0.0 BINDGEN_FEATURES: testing_only_libclang_5 - TARGET: msvc |