This repository has been archived by the owner on Jun 18, 2024. It is now read-only.
Decave PR run #1
Workflow file for this run
This file contains 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: build-run | |
run-name: ${{ github.actor }} PR run | |
on: [pull_request, push] | |
jobs: | |
build-run-schedulers: | |
runs-on: ubuntu-22.04 | |
steps: | |
### OTHER REPOS #### | |
# Hard turn-off interactive mode | |
- run: echo 'debconf debconf/frontend select Noninteractive' | sudo debconf-set-selections | |
# Refresh packages list | |
- run: sudo apt update | |
### DOWNLOAD AND INSTALL DEPENDENCIES ### | |
# Download dependencies packaged by Ubuntu | |
- run: sudo apt -y install coreutils cmake cargo elfutils libelf-dev libunwind-dev libzstd-dev linux-headers-generic linux-tools-common linux-tools-generic ninja-build python3-pip python3-requests qemu-kvm udev iproute2 busybox-static libvirt-clients kbd kmod file pahole rsync zstd | |
# clang 17 | |
# Use a custom llvm.sh script which includes the -y flag for | |
# add-apt-repository. Otherwise, the CI job will hang. If and when | |
# https://github.com/opencollab/llvm-jenkins.debian.net/pull/26 is | |
# merged, we can go back to using https://apt.llvm.org/llvm.sh. | |
- run: wget https://raw.githubusercontent.com/Decave/llvm-jenkins.debian.net/fix_llvmsh/llvm.sh | |
- run: chmod +x llvm.sh | |
- run: sudo ./llvm.sh all | |
- run: sudo ln -sf /usr/bin/clang-17 /usr/bin/clang | |
- run: sudo ln -sf /usr/bin/llvm-strip-17 /usr/bin/llvm-strip | |
# bpftool | |
- run: git clone --recurse-submodules --branch v7.3.0 https://github.com/libbpf/bpftool.git | |
- run: make -j -C bpftool/src | |
- run: sudo make -j -C bpftool/src install | |
- uses: actions/checkout@v4 | |
### END DEPENDENCIES ### | |
# The actual build: | |
- run: make CC=clang LD=ld.lld olddefconfig | |
- run: cat tools/testing/selftests/scx/config | xargs ./scripts/config -e | |
- run: make CC=clang LD=ld.lld -j$(nproc) | |
# Test schedulers | |
- run: make CC=clang Ld=ld.lld -C tools/testing/selftests/scx -j$(nproc) | |
- run: ./tools/testing/selftests/scx/test_sched.sh ./vmlinux |