diff options
-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 |