diff --git a/.github/actionlint.yaml b/.github/actionlint.yaml new file mode 100644 index 00000000..f7b4990c --- /dev/null +++ b/.github/actionlint.yaml @@ -0,0 +1,9 @@ +self-hosted-runner: + labels: + - oracle-bare-metal-64cpu-1024gb-x86-64-ubuntu-24 + +config-variables: null + +paths: + .github/workflows/**/*.{yml,yaml}: + ignore: diff --git a/.github/workflows/benchmark.yaml b/.github/workflows/benchmark.yaml index f7b0ff57..532031ba 100644 --- a/.github/workflows/benchmark.yaml +++ b/.github/workflows/benchmark.yaml @@ -6,6 +6,8 @@ on: - main pull_request: workflow_dispatch: + schedule: + - cron: '0 3 * * *' permissions: read-all @@ -14,8 +16,8 @@ jobs: # baseline. codspeed: name: CodSpeed Benchmarks - runs-on: ubuntu-latest # TODO: oracle-bare-metal-64cpu-1024gb-x86-64-ubuntu-24 - if: github.event_name == 'push' || github.event_name == 'workflow_dispatch' + runs-on: oracle-bare-metal-64cpu-1024gb-x86-64-ubuntu-24 + if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' steps: - name: Checkout code uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1 @@ -35,7 +37,8 @@ jobs: # Fails if any scenario's otelc overhead exceeds 150% of the plain baseline. overhead-threshold: name: Overhead Threshold Check - runs-on: ubuntu-latest # TODO: oracle-bare-metal-64cpu-1024gb-x86-64-ubuntu-24 + runs-on: ubuntu-latest + if: github.event_name != 'schedule' steps: - name: Checkout code uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6.0.1