mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
48 lines
624 B
YAML
48 lines
624 B
YAML
version: 2.{branch}.{build}
|
|
|
|
image:
|
|
- Ubuntu2004
|
|
- MacOS
|
|
|
|
build: off
|
|
|
|
init:
|
|
|
|
cache:
|
|
# - boringssl -> appveyor-linux.yml # we define the commit in here
|
|
|
|
install:
|
|
|
|
- sh: >-
|
|
|
|
if [[ -e boringssl/CMakeLists.txt ]] ; then
|
|
|
|
echo cached
|
|
|
|
else
|
|
|
|
git clone https://boringssl.googlesource.com/boringssl
|
|
|
|
cd boringssl
|
|
|
|
git checkout cf8d3ad3cea51cf7184307d54f465da62b7d8408
|
|
|
|
cmake .
|
|
|
|
make -j4
|
|
|
|
cd ..
|
|
|
|
fi
|
|
|
|
git submodule init
|
|
|
|
git submodule update --checkout --force --recursive
|
|
|
|
cmake -DBORINGSSL_DIR=$PWD/boringssl .
|
|
|
|
make
|
|
|
|
test_script:
|
|
|
|
- sh: make test
|