mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
Add AppVeyor file for Linux build
This commit is contained in:
parent
b54d1e6309
commit
cb447a705b
2 changed files with 35 additions and 0 deletions
35
appveyor-linux.yml
Normal file
35
appveyor-linux.yml
Normal file
|
@ -0,0 +1,35 @@
|
|||
version: 2.{branch}.{build}
|
||||
|
||||
image: Ubuntu2004
|
||||
|
||||
build: off
|
||||
|
||||
init:
|
||||
|
||||
install:
|
||||
|
||||
- sh: >-
|
||||
|
||||
git clone https://boringssl.googlesource.com/boringssl
|
||||
|
||||
cd boringssl
|
||||
|
||||
git checkout a2278d4d2cabe73f6663e3299ea7808edfa306b9
|
||||
|
||||
cmake .
|
||||
|
||||
make -j4
|
||||
|
||||
cd ..
|
||||
|
||||
git submodule init
|
||||
|
||||
git submodule update
|
||||
|
||||
cmake -DBORINGSSL_DIR=$PWD/boringssl .
|
||||
|
||||
make
|
||||
|
||||
test_script:
|
||||
|
||||
- sh: make test
|
Loading…
Reference in a new issue