mirror of
https://gitea.invidious.io/iv-org/lsquic-static-alpine.git
synced 2024-08-15 00:43:24 +00:00
Enable debug symbols
This commit is contained in:
parent
9a65243b17
commit
5eef886dd8
1 changed files with 2 additions and 3 deletions
5
.github/workflows/build.yml
vendored
5
.github/workflows/build.yml
vendored
|
@ -45,7 +45,7 @@ jobs:
|
||||||
git clone https://boringssl.googlesource.com/boringssl
|
git clone https://boringssl.googlesource.com/boringssl
|
||||||
cd boringssl
|
cd boringssl
|
||||||
git checkout $BORINGSSL_COMMIT
|
git checkout $BORINGSSL_COMMIT
|
||||||
cmake -DCMAKE_BUILD_TYPE=Release -GNinja .
|
cmake -DCMAKE_BUILD_TYPE=RelWithDebInfo -GNinja .
|
||||||
ninja
|
ninja
|
||||||
|
|
||||||
- name: Cache LSQUIC
|
- name: Cache LSQUIC
|
||||||
|
@ -74,7 +74,7 @@ jobs:
|
||||||
git checkout $LSQUIC_COMMIT
|
git checkout $LSQUIC_COMMIT
|
||||||
git submodule init
|
git submodule init
|
||||||
git submodule update
|
git submodule update
|
||||||
cmake -DBORINGSSL_DIR=../boringssl .
|
cmake -DBORINGSSL_DIR=../boringssl -DCMAKE_BUILD_TYPE=Debug .
|
||||||
make
|
make
|
||||||
|
|
||||||
- name: Test LSQUIC
|
- name: Test LSQUIC
|
||||||
|
@ -100,7 +100,6 @@ jobs:
|
||||||
ar -x ../lsquic/src/liblsquic/liblsquic.a
|
ar -x ../lsquic/src/liblsquic/liblsquic.a
|
||||||
ar rc liblsquic.a *.o
|
ar rc liblsquic.a *.o
|
||||||
rm *.o
|
rm *.o
|
||||||
strip --strip-unneeded liblsquic.a
|
|
||||||
ranlib liblsquic.a
|
ranlib liblsquic.a
|
||||||
|
|
||||||
echo "liblsquic.a $LSQUIC_VERSION (https://github.com/litespeedtech/lsquic/commit/$LSQUIC_COMMIT)" > version.txt
|
echo "liblsquic.a $LSQUIC_VERSION (https://github.com/litespeedtech/lsquic/commit/$LSQUIC_COMMIT)" > version.txt
|
||||||
|
|
Loading…
Reference in a new issue