diff options
| author | Christopher Vittal <[email protected]> | 2017-10-04 00:05:24 -0400 |
|---|---|---|
| committer | Christopher Vittal <[email protected]> | 2017-10-04 00:05:24 -0400 |
| commit | 701d3781dd8febcc582c801ba63527fcb5c328fb (patch) | |
| tree | 91f17d6f875ce5723f1ec6e2adc5d4bd8e20f32b | |
| parent | Add support for LibreSSL 2.6.2 (diff) | |
| download | rust-openssl-701d3781dd8febcc582c801ba63527fcb5c328fb.tar.xz rust-openssl-701d3781dd8febcc582c801ba63527fcb5c328fb.zip | |
Update CI to use LibreSSL 2.6.2
| -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 2c2fb0d5..39ef6c53 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_261: &LIBRESSL_261 +libressl_261: &LIBRESSL_262 LIBRARY: libressl - VERSION: 2.6.1 + VERSION: 2.6.2 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.1: + x86_64-libressl-2.6.2: <<: *JOB environment: - <<: [*LIBRESSL_261, *X86_64, *BASE] + <<: [*LIBRESSL_262, *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.1 + - x86_64-libressl-2.6.2 |