Log enabled and defrag parameters. #25
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: 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" |