Skip to content

Commit

Permalink
build-scx-selftests: make repo-root a required argument
Browse files Browse the repository at this point in the history
  • Loading branch information
theihor committed Oct 16, 2024
1 parent de42a5a commit ca766a4
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions build-scx-selftests/action.yml
Original file line number Diff line number Diff line change
@@ -1,30 +1,30 @@
name: 'build selftests'
description: 'Build selftests/sched_ext'
name: 'Build selftests/sched_ext'
inputs:
kbuild-output:
description: 'relative or absolute path to use for storing build artifacts'
description: 'Path to the kernel build output'
required: true
repo-root:
description: "Path to the root of the kernel repository"
required: true
arch:
description: 'arch'
required: true
toolchain:
description: 'what toolchain to use'
description: 'gcc or llvm'
default: 'gcc'
required: true
repo-root:
description: "Path to the root of the kernel repository. Default: github.workspace"
max-make-jobs:
description: 'Maximum number of jobs to use when running make (e.g argument to -j). Default: 4*nproc'
default: ''
llvm-version:
description: 'llvm version'
required: false
default: '16'
max-make-jobs:
description: 'Maximum number of jobs to use when running make (e.g argument to -j). Default: 4*nproc'
default: ''

runs:
using: "composite"
steps:
- name: build selftests/sched_ext
- name: Build selftests/sched_ext
env:
KBUILD_OUTPUT: ${{ inputs.kbuild-output }}
MAX_MAKE_JOBS: ${{ inputs.max-make-jobs }}
Expand Down

0 comments on commit ca766a4

Please sign in to comment.