litespeed-quic/appveyor-linux.yml

49 lines
624 B
YAML
Raw Permalink Normal View History

2021-02-11 22:15:40 +00:00
version: 2.{branch}.{build}
image:
- Ubuntu2004
- MacOS
2021-02-11 22:15:40 +00:00
build: off
init:
cache:
# - boringssl -> appveyor-linux.yml # we define the commit in here
2021-02-11 22:15:40 +00:00
install:
- sh: >-
if [[ -e boringssl/CMakeLists.txt ]] ; then
echo cached
else
git clone https://boringssl.googlesource.com/boringssl
cd boringssl
2021-02-11 22:15:40 +00:00
2022-01-11 16:17:44 +00:00
git checkout cf8d3ad3cea51cf7184307d54f465da62b7d8408
2021-02-11 22:15:40 +00:00
cmake .
2021-02-11 22:15:40 +00:00
make -j4
2021-02-11 22:15:40 +00:00
cd ..
2021-02-11 22:15:40 +00:00
fi
2021-02-11 22:15:40 +00:00
git submodule init
git submodule update --checkout --force --recursive
2021-02-11 22:15:40 +00:00
cmake -DBORINGSSL_DIR=$PWD/boringssl .
make
test_script:
- sh: make test