| - uses: actions/checkout@v2 |
| - name: install dependencies for ndncxx |
| sudo apt-get install pkg-config libssl-dev libsqlite3-dev |
| wget -O boost-1.72.0-linux-18.04.tar.gz https://github.com/actions/boost-versions/releases/download/1.72.0-20200608.4/boost-1.72.0-linux-18.04-gcc-x64.tar.gz > /dev/null 2>&1 |
| mkdir boost-1.72.0-linux-18.04 |
| tar -xzf boost-1.72.0-linux-18.04.tar.gz -C boost-1.72.0-linux-18.04 |
| cd boost-1.72.0-linux-18.04 |
| ./bootstrap.sh > /dev/null 2>&1 |
| sudo ./b2 install > /dev/null 2>&1 |
| git clone https://github.com/named-data/ndn-cxx.git |
| git checkout ndn-cxx-0.7.1 |
| run: ./waf configure --with-tests |
| export LD_LIBRARY_PATH="/usr/local/lib:$LD_LIBRARY_PATH" |