Skip to content

Build Overhead Experiment #2

Build Overhead Experiment

Build Overhead Experiment #2

name: Build Overhead Experiment
on:
workflow_dispatch:
jobs:
measure-overhead:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
with:
submodules: true
fetch-depth: 0
- name: Setup JDK 17
uses: actions/setup-java@f2beeb24e141e01a676f977032f5a29d81c9e27e # v5
with:
distribution: 'temurin'
java-version: '17'
- name: Install dependencies
run: |
sudo apt-get update
sudo apt-get install -y xmlstarlet bc
- name: Build classport project
run: mvn install -DskipTests
- name: Run build overhead measurement
run: |
cd .github/workflows/experiments
./compute_build_overhead.sh pdfbox
- name: Upload build logs
if: always()
uses: actions/upload-artifact@v4
with:
name: build-overhead-logs
path: .github/workflows/experiments/build-logs/
retention-days: 30