diff options
| author | Marc-Antoine Perennou <[email protected]> | 2017-09-17 11:11:05 +0200 |
|---|---|---|
| committer | Marc-Antoine Perennou <[email protected]> | 2017-09-17 11:43:25 +0200 |
| commit | 70f72ae1770fa9d81c1e7da03629f37cadf0c214 (patch) | |
| tree | dbf528f51c3e4837311846555645797ce2fe617a | |
| parent | openssl-sys: support libressl 2.6.1 (diff) | |
| download | rust-openssl-70f72ae1770fa9d81c1e7da03629f37cadf0c214.tar.xz rust-openssl-70f72ae1770fa9d81c1e7da03629f37cadf0c214.zip | |
ci: use libressl 2.6.1
Signed-off-by: Marc-Antoine Perennou <[email protected]>
| -rw-r--r-- | .circleci/config.yml | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/.circleci/config.yml b/.circleci/config.yml index 59f899f2..2c2fb0d5 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -78,9 +78,9 @@ openssl_101: &OPENSSL_101 libressl_250: &LIBRESSL_250 LIBRARY: libressl VERSION: 2.5.0 -libressl_260: &LIBRESSL_260 +libressl_261: &LIBRESSL_261 LIBRARY: libressl - VERSION: 2.6.0 + VERSION: 2.6.1 x86_64: &X86_64 TARGET: x86_64-unknown-linux-gnu @@ -139,10 +139,10 @@ jobs: <<: *JOB environment: <<: [*LIBRESSL_250, *X86_64, *BASE] - x86_64-libressl-2.6.0: + x86_64-libressl-2.6.1: <<: *JOB environment: - <<: [*LIBRESSL_260, *X86_64, *BASE] + <<: [*LIBRESSL_261, *X86_64, *BASE] workflows: version: 2 tests: @@ -157,4 +157,4 @@ workflows: - armhf-openssl-1.0.2 - armhf-openssl-1.0.1 - x86_64-libressl-2.5.0 - - x86_64-libressl-2.6.0 + - x86_64-libressl-2.6.1 |