blob: 83b0b5961721d0c68720110c15c8feb497dc918a [file] [log] [blame]
Steve Dowere5f41d22018-05-16 17:50:29 -04001# Note: this file is not currently used, but when template support comes to VSTS it
2# will be referenced from the other scripts..
3
4# Current docs for the syntax of this file are at:
5# https://github.com/Microsoft/vsts-agent/blob/master/docs/preview/yamlgettingstarted.md
6
7parameters:
8 OPENSSL: 1.1.0g
9 OPENSSL_DIR: "$(build.sourcesDirectory)/multissl/openssl/$(OPENSSL)"
10
11steps:
12- script: echo "deb-src http://archive.ubuntu.com/ubuntu/ xenial main" > /etc/apt/sources.list.d/python.list && sudo apt-get update
13 displayName: 'Update apt-get lists'
14
15- script: echo ##vso[task.prependpath]$(OPENSSL_DIR)
16 displayName: 'Add $(OPENSSL_DIR) to PATH'
17- script: >
18 sudo apt-get -yq install
19 build-essential
20 zlib1g-dev
21 libbz2-dev
22 liblzma-dev
23 libncurses5-dev
24 libreadline6-dev
25 libsqlite3-dev
26 libssl-dev
27 libgdbm-dev
28 tk-dev
29 lzma
30 lzma-dev
31 liblzma-dev
32 libffi-dev
33 uuid-dev
Zachary Ware3f197f92018-06-24 10:20:34 -050034 xvfb
Steve Dowere5f41d22018-05-16 17:50:29 -040035 displayName: 'Install dependencies'
36- script: python3 Tools/ssl/multissltests.py --steps=library --base-directory $(build.sourcesDirectory)/multissl --openssl $(OPENSSL) --system Linux
37 displayName: 'python multissltests.py'