aboutsummaryrefslogtreecommitdiff
path: root/.cirrus.yml
diff options
context:
space:
mode:
authorIlya Shipitsin <chipitsine@gmail.com>2020-01-04 21:20:52 +0500
committerDmitry Belyavskiy <beldmit@users.noreply.github.com>2020-01-04 19:40:57 +0300
commit8673290c2c58c76893b1b6a2b830591f9f52e115 (patch)
tree053e36f66180751f0f1cbb1e6770ff4908563056 /.cirrus.yml
parent8f833cfdb86b9309da42a4f925612c64a0a5e9b6 (diff)
downloadgost-engine-8673290c2c58c76893b1b6a2b830591f9f52e115.zip
gost-engine-8673290c2c58c76893b1b6a2b830591f9f52e115.tar.gz
gost-engine-8673290c2c58c76893b1b6a2b830591f9f52e115.tar.bz2
cirrus-ci: switch to openssl-1.1.1 for a while
Diffstat (limited to '.cirrus.yml')
-rw-r--r--.cirrus.yml10
1 files changed, 5 insertions, 5 deletions
diff --git a/.cirrus.yml b/.cirrus.yml
index 47b69c4..47b3722 100644
--- a/.cirrus.yml
+++ b/.cirrus.yml
@@ -1,15 +1,15 @@
FreeBSD_task:
freebsd_instance:
- image: freebsd-12-0-release-amd64
+ image_family: freebsd-12-1
env:
- ASSUME_ALWAYS_YES: TRUE # required for unattended "pkg" invocation
PREFIX: ${HOME}/opt
LD_LIBRARY_PATH: ${PREFIX}/lib
PATH: ${PREFIX}/bin:${PATH}
- OPENSSL_BRANCH: master
- script:
- - pkg install git cmake p5-App-cpanminus gdb pkgconf
+ OPENSSL_BRANCH: OpenSSL_1_1_1-stable
+ install_script:
+ - pkg install -y git cmake p5-App-cpanminus gdb pkgconf
- sudo cpanm --notest Test2::V0
+ script:
- git clone --depth 1 -b ${OPENSSL_BRANCH} https://github.com/openssl/openssl.git
- cd openssl
- ./config shared -d --prefix=${PREFIX} --openssldir=${PREFIX} && make all install_sw > build.log 2>&1 || (cat build.log && exit 1)