mirror of
https://github.com/netdata/libbpf.git
synced 2026-03-23 17:59:06 +08:00
Sprinkle log folds around, including timing. Signed-off-by: Andrii Nakryiko <andriin@fb.com>
21 lines
365 B
Bash
Executable File
21 lines
365 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -eu
|
|
|
|
source $(cd $(dirname $0) && pwd)/helpers.sh
|
|
|
|
REPO_PATH=$1
|
|
|
|
${VMTEST_ROOT}/checkout_latest_kernel.sh ${REPO_PATH}
|
|
cd ${REPO_PATH}
|
|
|
|
if [[ "${KERNEL}" = 'LATEST' ]]; then
|
|
travis_fold start build_kernel "Kernel build"
|
|
|
|
cp ${VMTEST_ROOT}/configs/latest.config .config
|
|
make -j $((4*$(nproc))) olddefconfig all
|
|
|
|
travis_fold end build_kernel
|
|
fi
|
|
|