diff options
author | Manuel Bentele | 2021-07-26 09:43:30 +0200 |
---|---|---|
committer | Manuel Bentele | 2021-07-26 13:36:42 +0200 |
commit | e7524b1c1bfb02e6c85bc494c19a2073959810fb (patch) | |
tree | 51e551ab6bf7ed064068a6cd92f3dcc77ee90d18 | |
parent | [BUILD] Add CMake option to enable build of dnbd3-bench (diff) | |
download | dnbd3-e7524b1c1bfb02e6c85bc494c19a2073959810fb.tar.gz dnbd3-e7524b1c1bfb02e6c85bc494c19a2073959810fb.tar.xz dnbd3-e7524b1c1bfb02e6c85bc494c19a2073959810fb.zip |
[BUILD] Add Github actions to compile kernel module for various kernels
-rw-r--r-- | .github/workflows/build-kernel-module.yml | 81 | ||||
-rw-r--r-- | .github/workflows/build-programs.yml (renamed from .github/workflows/build.yml) | 3 |
2 files changed, 83 insertions, 1 deletions
diff --git a/.github/workflows/build-kernel-module.yml b/.github/workflows/build-kernel-module.yml new file mode 100644 index 0000000..c2c8978 --- /dev/null +++ b/.github/workflows/build-kernel-module.yml @@ -0,0 +1,81 @@ +name: Build dnbd3 kernel module + +on: + push: + branches: + - master + pull_request: + release: + +jobs: + build: + strategy: + fail-fast: false + matrix: + config: + - name: kernel module [CentOS kernel 4.18.0-x] + build-os: ubuntu-20.04 + kernel-type: centos + kernel-version: 4.18.0-305.10.2 + kernel-source: https://vault.centos.org/8.4.2105/BaseOS/Source/SPackages/kernel-4.18.0-305.10.2.el8_4.src.rpm + - name: kernel module [Linux kernel 4.19.x] + build-os: ubuntu-18.04 + kernel-type: vanilla + kernel-version: 4.19.y + - name: kernel module [Linux kernel 5.4.x] + build-os: ubuntu-20.04 + kernel-type: vanilla + kernel-version: 5.4.y + - name: kernel module [Linux kernel 5.10.x] + build-os: ubuntu-20.04 + kernel-type: vanilla + kernel-version: 5.10.y + name: Build dnbd3 ${{ matrix.config.name }} + runs-on: ${{ matrix.config.build-os }} + steps: + - name: Install dnbd3 dependencies + run: | + sudo apt-get update -y -qq + sudo apt-get install -y -qq make \ + clang-format \ + libelf-dev \ + rpm2cpio \ + rpm + - name: Checkout dnbd3 repository + uses: actions/checkout@v2 + - name: Fetch dnbd3 repository tags + run: git fetch --prune --unshallow + - name: Checkout Vanilla kernel version + if: matrix.config.kernel-type == 'vanilla' + run: git clone --depth 1 --branch "linux-${{ matrix.config.kernel-version }}" "https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git" "../kernel" + - name: Checkout CentOS kernel version + if: matrix.config.kernel-type == 'centos' + run: | + mkdir "${{ github.workspace }}/../kernel" + mkdir "${{ github.workspace }}/../kernel-download" + wget -q -O "${{ github.workspace }}/../kernel-download/kernel.rpm" "${{ matrix.config.kernel-source }}" + cd "${{ github.workspace }}/../kernel-download" + rpm2cpio "${{ github.workspace }}/../kernel-download/kernel.rpm" | cpio --extract --make-directories + tar --strip 1 -a -x -f linux-${{ matrix.config.kernel-version }}*.tar.xz -C "${{ github.workspace }}/../kernel" + - name: Configure kernel version + working-directory: ${{ github.workspace }}/../kernel + run: | + make defconfig + make modules_prepare + - name: Configure dnbd3 build + run: | + cmake -B ${{ github.workspace }}/build \ + -S ${{ github.workspace }} \ + -D CMAKE_BUILD_TYPE=Release \ + -D DNBD3_KERNEL_MODULE=ON \ + -D KERNEL_BUILD_DIR=${{ github.workspace }}/../kernel \ + -D KERNEL_INSTALL_DIR=${{ github.workspace }}/../kernel/extra \ + -D KERNEL_SCRIPTS_DIR=${{ github.workspace }}/../kernel/scripts \ + -D DNBD3_BENCHMARK=OFF \ + -D DNBD3_CLIENT_FUSE=OFF \ + -D DNBD3_SERVER=OFF \ + -D DNBD3_SERVER_FUSE=OFF \ + -D DNBD3_RELEASE_HARDEN=OFF + - name: Build dnbd3 kernel module + working-directory: ${{ github.workspace }}/build + run: make diff --git a/.github/workflows/build.yml b/.github/workflows/build-programs.yml index ae3a940..a38cafb 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build-programs.yml @@ -1,4 +1,4 @@ -name: Build dnbd3 +name: Build dnbd3 programs on: push: @@ -59,6 +59,7 @@ jobs: cmake -B ${{ github.workspace }}/build \ -S ${{ github.workspace }} \ -D CMAKE_BUILD_TYPE=${{ matrix.config.build-type }} \ + -D DNBD3_KERNEL_MODULE=OFF \ -D DNBD3_BENCHMARK=ON \ -D DNBD3_SERVER_FUSE=${{ matrix.config.build-cfg-server-fuse }} \ -D DNBD3_RELEASE_HARDEN=${{ matrix.config.build-cfg-harden }} |