blob: 6a33c39e4b48f62ca1d21e1ac4f67c515429be72 [file] [log] [blame]
#! /bin/bash
set -e
source .github/workflows/common.sh
##########################################################################
start_section Building
make plugins -j`nproc`
end_section
##########################################################################
start_section Installing
make install -j`nproc`
end_section
##########################################################################
start_section Testing
make test -j`nproc`
end_section
##########################################################################
start_section Cleanup
make clean -j`nproc`
end_section
##########################################################################