Skip to content

Fixed several coding style issues in the efi driver as reported by checkpatch.pl: #382

Fixed several coding style issues in the efi driver as reported by checkpatch.pl:

Fixed several coding style issues in the efi driver as reported by checkpatch.pl: #382

Workflow file for this run

# SPDX-License-Identifier: GPL-2.0-or-later
#
# Copyright (c) 2025 Western Digital Corporation or its affiliates.
name: blktests-ci
on:
pull_request:
jobs:
build-kernel:
runs-on: ubuntu-latest
steps:
- name: Configure git
run: |
git config --global --add safe.directory '*'
- name: Checkout git
run: |
sudo apt-get install -y libelf-dev
mkdir -p linux
cd linux
git init
git remote add origin https://github.com/${{ github.repository }}
git fetch origin --depth=5 ${{ github.event.pull_request.head.sha }}
git reset --hard ${{ github.event.pull_request.head.sha }}
git log -1
- name: Build kernel
run: |
cd linux
make defconfig
make -j 8