diff options
-rw-r--r-- | .github/workflows/bindgen.yml | 9 | ||||
-rw-r--r-- | appveyor.yml | 6 |
2 files changed, 2 insertions, 13 deletions
diff --git a/.github/workflows/bindgen.yml b/.github/workflows/bindgen.yml index bb2d565e..87b2cdb1 100644 --- a/.github/workflows/bindgen.yml +++ b/.github/workflows/bindgen.yml @@ -99,7 +99,7 @@ jobs: - debian: null cross: null rust: null - llvm_version: ["3.9", "4.0", "5.0", "9.0"] + llvm_version: ["4.0", "5.0", "9.0"] main_tests: [1] release_build: [0, 1] no_default_features: [0, 1] @@ -110,14 +110,9 @@ jobs: feature_testing_only_docs: [0] exclude: - # 3.9 and 4.0 are too old to support regular dynamic linking, so this + # 4.0 is too old to support regular dynamic linking, so this # is not expected to work. - os: ubuntu-latest - llvm_version: "3.9" - no_default_features: 1 - feature_runtime: 0 - - - os: ubuntu-latest llvm_version: "4.0" no_default_features: 1 feature_runtime: 0 diff --git a/appveyor.yml b/appveyor.yml index 342f47cc..51129cdc 100644 --- a/appveyor.yml +++ b/appveyor.yml @@ -3,9 +3,6 @@ environment: RUST_CHANNEL: "%Configuration%" matrix: - TARGET: gnu - LLVM_VERSION: 3.9.0-2 - BINDGEN_FEATURES: testing_only_libclang_3_9 - - TARGET: gnu LLVM_VERSION: 4.0.0-1 BINDGEN_FEATURES: testing_only_libclang_4 - TARGET: gnu @@ -15,9 +12,6 @@ environment: LLVM_VERSION: 9.0.0-1 BINDGEN_FEATURES: testing_only_libclang_9 - TARGET: msvc - LLVM_VERSION: 3.9.0 - BINDGEN_FEATURES: testing_only_libclang_3_9 - - TARGET: msvc LLVM_VERSION: 4.0.0 BINDGEN_FEATURES: testing_only_libclang_4 - TARGET: msvc |