1
0
mirror of https://github.com/rancher/os.git synced 2025-07-16 08:05:51 +00:00

Avoid kernel too old error when building ROS

This commit is contained in:
niusmallnan 2018-08-06 14:11:38 +08:00 committed by niusmallnan
parent 4fff436f04
commit edae355cd2
3 changed files with 17 additions and 2 deletions

View File

@ -5,4 +5,4 @@ pipeline:
volumes:
- /var/run/docker.sock:/var/run/docker.sock
commands:
- dapper ci
- KERNEL_CHECK=0 dapper ci

View File

@ -40,7 +40,7 @@ RUN echo "Acquire::http { Proxy \"$APTPROXY\"; };" >> /etc/apt/apt.conf.d/01prox
########## Dapper Configuration #####################
ENV DAPPER_ENV VERSION DEV_BUILD RUNTEST DEBUG APTPROXY ENGINE_REGISTRY_MIRROR INTEGRATION_TESTS
ENV DAPPER_ENV VERSION DEV_BUILD RUNTEST DEBUG APTPROXY ENGINE_REGISTRY_MIRROR INTEGRATION_TESTS KERNEL_CHECK
ENV DAPPER_DOCKER_SOCKET true
ENV DAPPER_SOURCE /go/src/github.com/rancher/os
ENV DAPPER_OUTPUT ./bin ./dist ./build/initrd ./build/kernel

View File

@ -1,6 +1,21 @@
#!/bin/bash
set -e
version_gt() {
test "$(printf '%s\n' "$@" | sort -V | head -n 1)" != "$1";
}
if [ "$KERNEL_CHECK" != "0" ]; then
echo "Host Kernel: $(uname -r)"
echo "RancherOS Kernel: $KERNEL_VERSION"
if ! version_gt $(uname -r) $KERNEL_VERSION; then
echo "Your host kernel must be greater than RancherOS KERNEL_VERSION"
exit 1
fi
fi
echo -------------------------./build-target
$(dirname $0)/build-target
echo -------------------------./build-host