OpenJDK Performance Baseline #10
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: OpenJDK Performance Baseline | |
on: | |
# Manual dispatch | |
workflow_dispatch: | |
# Or on every sunday 1200am UTC | |
schedule: | |
- cron: '0 0 * * SUN' | |
jobs: | |
openjdk-baseline: | |
runs-on: [self-hosted, Linux, freq-scaling-off] | |
# Allow 2 days to run (it currently takes slightly more than 1 day to finish) | |
timeout-minutes: 2880 | |
steps: | |
- name: Checkout OpenJDK Binding | |
uses: actions/checkout@v2 | |
with: | |
repository: mmtk/mmtk-openjdk | |
path: mmtk-openjdk | |
submodules: true | |
# checkout perf-kit | |
- name: Checkout Perf Kit | |
uses: actions/checkout@v2 | |
with: | |
token: ${{ secrets.CI_ACCESS_TOKEN }} | |
repository: mmtk/ci-perf-kit | |
ref: "0.6.8" | |
path: ci-perf-kit | |
submodules: true | |
# setup | |
- name: Setup | |
run: | | |
./ci-perf-kit/scripts/history-run-setup.sh | |
sed -i 's/^mmtk[[:space:]]=/#ci:mmtk=/g' mmtk-openjdk/mmtk/Cargo.toml | |
sed -i 's/^#[[:space:]]mmtk/mmtk/g' mmtk-openjdk/mmtk/Cargo.toml | |
# run | |
- name: Performance Run | |
timeout-minutes: 2880 | |
run: | | |
export RESULT_REPO=mmtk/ci-perf-result | |
export RESULT_REPO_BRANCH=self-hosted | |
export RESULT_REPO_ACCESS_TOKEN=${{ secrets.CI_ACCESS_TOKEN }} | |
export FROM_DATE=2020-07-10 | |
./ci-perf-kit/scripts/openjdk-stock.sh ./mmtk-openjdk/repos/openjdk |