Skip to content

no env

no env #2

Workflow file for this run

name: TPP-MLIR Benchmarks
on:
workflow_dispatch:
push:
branches: [ "ghactions" ]
pull_request:
branches: [ "ghactions" ]
env:
NPROCS_LIMIT_LINK: 8
RUN_SPR_BENCH: 1
jobs:
Check_LLVM:
runs-on: self-hosted
steps:
- name: Check LLVM
run: "BUILD=1 scripts/buildkite/check_llvm.sh"
TPP-MLIR-SPR-BASE:
runs-on: self-hosted
needs: Check_LLVM
steps:
- name: Sapphire Rapids Base
run: "${SRUN} --partition=spr --time=2:00:00 --constraint=\"notrb\" -- \
'KIND=Release COMPILER=clang LINKER=lld \
scripts/buildkite/benchmark.sh -b -p'"
if: ${{ RUN_SPR_BENCH }} == "1"

Check failure on line 29 in .github/workflows/tpp-benchmark.yml

View workflow run for this annotation

GitHub Actions / TPP-MLIR Benchmarks

Invalid workflow file

The workflow is not valid. .github/workflows/tpp-benchmark.yml (Line: 29, Col: 9): Unrecognized named-value: 'RUN_SPR_BENCH'. Located at position 1 within expression: RUN_SPR_BENCH .github/workflows/tpp-benchmark.yml (Line: 39, Col: 9): Unrecognized named-value: 'RUN_SPR_BENCH'. Located at position 1 within expression: RUN_SPR_BENCH
TPP-MLIR-SPR-OMP:
runs-on: self-hosted
needs: Check_LLVM
steps:
- name: Sapphire Rapids OpenMP
run: "${SRUN} --partition=spr --time=2:00:00 --constraint=\"notrb\" -- \
'KIND=Release COMPILER=clang LINKER=lld \
scripts/buildkite/benchmark.sh -o'"
if: ${{ RUN_SPR_BENCH }} == "1"