f5006be472
This commit also syncs the CI config and scripts with ndn-tools Change-Id: I54707a7119c5e91138eaf55ad72af8fa98125028
17 lines
279 B
Bash
Executable File
17 lines
279 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -exo pipefail
|
|
|
|
# Build in debug mode
|
|
./waf --color=yes configure --debug
|
|
./waf --color=yes build
|
|
|
|
# Cleanup
|
|
./waf --color=yes distclean
|
|
|
|
# Build in release mode
|
|
./waf --color=yes configure
|
|
./waf --color=yes build
|
|
|
|
# Install
|
|
sudo ./waf --color=yes install
|