github-actions: use capnp v0.8.0

This also updates the note in the README for the FPGA interchange

Signed-off-by: Alessandro Comodi <acomodi@antmicro.com>
This commit is contained in:
Alessandro Comodi 2021-03-16 16:56:13 +01:00
parent 83544cdf6a
commit f9e9fadbc8
2 changed files with 4 additions and 4 deletions

View File

@ -1,9 +1,9 @@
#!/bin/bash
# Install capnproto libraries
curl -O https://capnproto.org/capnproto-c++-0.7.0.tar.gz
tar zxf capnproto-c++-0.7.0.tar.gz
pushd capnproto-c++-0.7.0
curl -O https://capnproto.org/capnproto-c++-0.8.0.tar.gz
tar zxf capnproto-c++-0.8.0.tar.gz
pushd capnproto-c++-0.8.0
./configure
make -j`nproc` check
sudo make install

View File

@ -12,7 +12,7 @@ Install java and javac if not already installed:
sudo apt-get install openjdk-10-jdk
```
Install capnproto if not already installed. Version 0.7.0 or higher is required.
Install capnproto if not already installed. Version 0.8.0 is required.
As stated in the [official instructions](https://capnproto.org/install.html), the version on the common package managers
might not be up to date with the latest version, hence it is suggested to install
from the archive or, in alternative, directly from the git repository.