[SIG-CLOUD-10] LE-3908 LE-3904 LE-3894 LE-3890 LE-3886 LE-3555 #111
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: aarch64-RT CI | |
on: | |
pull_request: | |
branches: | |
- '**' | |
- '!mainline' | |
jobs: | |
kernel-build-job: | |
runs-on: | |
labels: kernel-build-arm64 | |
container: | |
image: rockylinux/rockylinux:10 | |
env: | |
ROCKY_ENV: rocky10 | |
ports: | |
- 80 | |
options: --cpus 8 | |
steps: | |
- name: Install tools and Libraries | |
run: | | |
dnf update -y | |
dnf install 'dnf-command(config-manager)' -y | |
dnf config-manager --set-enabled devel | |
dnf install --enablerepo=crb bc dwarves kernel-devel openssl-devel elfutils-libelf-devel -y | |
dnf groupinstall 'Development Tools' -y | |
dnf install openssl -y | |
- name: Checkout code | |
uses: actions/checkout@v4 | |
with: | |
ref: "${{ github.event.pull_request.head.sha }}" | |
fetch-depth: 0 | |
- name: Build the Kernel | |
run: | | |
git config --global --add safe.directory /__w/kernel-src-tree/kernel-src-tree | |
cp configs/kernel-aarch64-rt-rhel.config .config | |
make olddefconfig | |
make -j8 |