Defaulting to built-in capnproto

- Adding code to detect if bundled capnproto is already built
This commit is contained in:
Jacob Alexander
2019-10-15 09:05:01 -07:00
parent 7789ebbf96
commit 67d5276936
3 changed files with 19 additions and 13 deletions

View File

@@ -25,15 +25,9 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
# Install capnproto
curl -O https://capnproto.org/capnproto-c++-0.7.0.tar.gz
tar zxf capnproto-c++-0.7.0.tar.gz
cd capnproto-c++-0.7.0
./configure
make -j check
sudo make install
- name: Build pycapnp and install
run: |
python setup.py build # Not necessary, but shows output on stdout
pip install .
- name: Lint with flake8
run: |