aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSteven Fackler <[email protected]>2017-07-16 14:44:04 -0700
committerSteven Fackler <[email protected]>2017-07-16 14:51:43 -0700
commit5e0146b10aa9fdf04aafb9602771f3edda26de28 (patch)
tree1061fab43513da3e275efafd30179f71e41993eb
parentRemove unused import (diff)
downloadrust-openssl-5e0146b10aa9fdf04aafb9602771f3edda26de28.tar.xz
rust-openssl-5e0146b10aa9fdf04aafb9602771f3edda26de28.zip
Test against libressl 2.6.0
-rw-r--r--circle.yml48
-rw-r--r--openssl-sys/build.rs4
2 files changed, 23 insertions, 29 deletions
diff --git a/circle.yml b/circle.yml
index 4bf92cad..ed505603 100644
--- a/circle.yml
+++ b/circle.yml
@@ -1,4 +1,4 @@
-defaults: &DEFAULT
+job: &JOB
working_directory: ~/build
docker:
- image: jimmycuadra/rust:1.18.0
@@ -51,29 +51,23 @@ defaults: &DEFAULT
openssl_110: &OPENSSL_110
LIBRARY: openssl
VERSION: 1.1.0f
-
openssl_102: &OPENSSL_102
LIBRARY: openssl
VERSION: 1.0.2l
-
openssl_101: &OPENSSL_101
LIBRARY: openssl
VERSION: 1.0.1u
-
-libressl_new: &LIBRESSL_OLD
+libressl_250: &LIBRESSL_250
LIBRARY: libressl
VERSION: 2.5.0
-
-libressl_new: &LIBRESSL_NEW
+libressl_260: &LIBRESSL_260
LIBRARY: libressl
- VERSION: 2.5.5
+ VERSION: 2.6.0
x86_64: &X86_64
TARGET: x86_64-unknown-linux-gnu
-
i686: &I686
TARGET: i686-unknown-linux-gnu
-
armhf: &ARMHF
TARGET: arm-unknown-linux-gnueabihf
NO_RUN: 1
@@ -83,49 +77,49 @@ armhf: &ARMHF
version: 2
jobs:
x86_64-openssl-1.1.0:
- <<: *DEFAULT
+ <<: *JOB
environment:
<<: [*OPENSSL_110, *X86_64]
x86_64-openssl-1.0.2:
- <<: *DEFAULT
+ <<: *JOB
environment:
<<: [*OPENSSL_102, *X86_64]
x86_64-openssl-1.0.1:
- <<: *DEFAULT
+ <<: *JOB
environment:
<<: [*OPENSSL_101, *X86_64]
i686-openssl-1.1.0:
- <<: *DEFAULT
+ <<: *JOB
environment:
<<: [*OPENSSL_110, *I686]
i686-openssl-1.0.2:
- <<: *DEFAULT
+ <<: *JOB
environment:
<<: [*OPENSSL_102, *I686]
i686-openssl-1.0.1:
- <<: *DEFAULT
+ <<: *JOB
environment:
<<: [*OPENSSL_101, *I686]
armhf-openssl-1.1.0:
- <<: *DEFAULT
+ <<: *JOB
environment:
<<: [*OPENSSL_110, *ARMHF]
armhf-openssl-1.0.2:
- <<: *DEFAULT
+ <<: *JOB
environment:
<<: [*OPENSSL_102, *ARMHF]
armhf-openssl-1.0.1:
- <<: *DEFAULT
+ <<: *JOB
environment:
<<: [*OPENSSL_101, *ARMHF]
- x86_64-libressl-old:
- <<: *DEFAULT
+ x86_64-libressl-2.5.0:
+ <<: *JOB
environment:
- <<: [*LIBRESSL_OLD, *X86_64]
- x86_64-libressl-new:
- <<: *DEFAULT
+ <<: [*LIBRESSL_250, *X86_64]
+ x86_64-libressl-2.6.0:
+ <<: *JOB
environment:
- <<: [*LIBRESSL_NEW, *X86_64]
+ <<: [*LIBRESSL_260, *X86_64]
workflows:
version: 2
tests:
@@ -139,5 +133,5 @@ workflows:
- armhf-openssl-1.1.0
- armhf-openssl-1.0.2
- armhf-openssl-1.0.1
- - x86_64-libressl-old
- - x86_64-libressl-new
+ - x86_64-libressl-2.5.0
+ - x86_64-libressl-2.6.0
diff --git a/openssl-sys/build.rs b/openssl-sys/build.rs
index 68d3e0d0..41f2329f 100644
--- a/openssl-sys/build.rs
+++ b/openssl-sys/build.rs
@@ -407,8 +407,8 @@ See rust-openssl README for more information:
"
This crate is only compatible with OpenSSL 1.0.1, 1.0.2, and 1.1.0, or LibreSSL
-2.5.0, 2.5.1, 2.5.2, 2.5.3, and 2.5.4, but a different version of OpenSSL was
-found. The build is now aborting due to this version mismatch.
+2.5 and 2.6.0, but a different version of OpenSSL was found. The build is now
+aborting due to this version mismatch.
"
);