-
-
Notifications
You must be signed in to change notification settings - Fork 385
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore(ci): switch to submodule source code
- Loading branch information
Showing
1 changed file
with
5 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,9 @@ | ||
#!/usr/bin/env bash | ||
# version on submodule must match | ||
# update summodule if you change this | ||
version=0.9.1 | ||
echo "$(nproc) thread to build" | ||
curl -O https://capnproto.org/capnproto-c++-${version}.tar.gz | ||
tar zxf capnproto-c++-${version}.tar.gz | ||
cd capnproto-c++-${version} | ||
|
||
# build from submodule source, keep same version | ||
echo "$(nproc) threads to build" | ||
cd app/src/main/jni/capnproto/c++ | ||
autoreconf -i | ||
./configure | ||
make -j$(nproc) | ||
sudo make install |