appveyor-linux.yml revision f07b3eae
1version: 2.{branch}.{build} 2 3image: 4- Ubuntu2004 5- MacOS 6 7build: off 8 9init: 10 11cache: 12- boringssl -> appveyor-linux.yml # we define the commit in here 13 14install: 15 16- sh: >- 17 18 if [[ -e boringssl/CMakeLists.txt ]] ; then 19 20 echo cached 21 22 else 23 24 git clone https://boringssl.googlesource.com/boringssl 25 26 cd boringssl 27 28 git checkout a2278d4d2cabe73f6663e3299ea7808edfa306b9 29 30 cmake . 31 32 make -j4 33 34 cd .. 35 36 fi 37 38 git submodule init 39 40 git submodule update --checkout --force --recursive 41 42 cmake -DBORINGSSL_DIR=$PWD/boringssl . 43 44 make 45 46test_script: 47 48- sh: make test 49