Fix CI (1/2) (#284)
* New default docker image no longer contains bcrypt. * Install cryptography for ACME tests. * Add constraints.pull/285/head
parent
56b2130c6e
commit
0fdede5d7a
|
@ -1,3 +1,4 @@
|
||||||
dependencies:
|
dependencies:
|
||||||
# - setup_openssl
|
# - setup_openssl
|
||||||
|
- setup_remote_constraints
|
||||||
- setup_remote_tmp_dir
|
- setup_remote_tmp_dir
|
||||||
|
|
|
@ -9,6 +9,11 @@
|
||||||
set_fact:
|
set_fact:
|
||||||
openssl_binary: openssl
|
openssl_binary: openssl
|
||||||
|
|
||||||
|
- name: Make sure cryptography is installed
|
||||||
|
pip:
|
||||||
|
name: cryptography
|
||||||
|
extra_args: "-c {{ remote_constraints }}"
|
||||||
|
|
||||||
- name: Register openssl version
|
- name: Register openssl version
|
||||||
shell: "{{ openssl_binary }} version | cut -d' ' -f2"
|
shell: "{{ openssl_binary }} version | cut -d' ' -f2"
|
||||||
register: openssl_version
|
register: openssl_version
|
||||||
|
|
|
@ -1,6 +1,7 @@
|
||||||
cryptography
|
cryptography
|
||||||
ipaddress ; python_version < '3.0'
|
ipaddress ; python_version < '3.0'
|
||||||
pyopenssl
|
pyopenssl
|
||||||
|
bcrypt
|
||||||
|
|
||||||
unittest2 ; python_version < '2.7'
|
unittest2 ; python_version < '2.7'
|
||||||
importlib ; python_version < '2.7'
|
importlib ; python_version < '2.7'
|
||||||
|
|
Loading…
Reference in New Issue