Files
Davide Pesavento f5006be472 build+ci: support CentOS Stream 9 and macOS/arm64
This commit also syncs the CI config and scripts with ndn-tools

Change-Id: I54707a7119c5e91138eaf55ad72af8fa98125028
2022-08-19 17:36:36 -04:00

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