Skip to content

Log enabled and defrag parameters. #25

Log enabled and defrag parameters.

Log enabled and defrag parameters. #25

Workflow file for this run

name: Continuous Integration Benchmarks
on: [push, pull_request, workflow_dispatch]
defaults:
run:
shell: bash
jobs:
unit-test:
strategy:
fail-fast: false
matrix:
os: [ubuntu-24.04]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v6
- name: Disable Address Space Layout Randomization
run: sudo bash -c 'echo 0 > /proc/sys/kernel/randomize_va_space'
- name: Disable autogroup
run: sudo bash -c 'echo 0 > /proc/sys/kernel/sched_autogroup_enabled'
- name: Install Ubuntu packages
run: |
sudo apt-get update --yes
sudo apt-get install --yes coreutils sed gawk stress-ng icdiff
- name: Run THP benchmark
run: ./"thp-benchmark.sh"