Skip to content
Merged
Changes from 3 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .github/workflows/stackhpc-all-in-one.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,11 @@ name: All in one
on:
workflow_call:
inputs:
runner:
required: false
type: string
description: 'Runner name'
default: 'arc-skc-aio-runner'
kayobe_image:
description: Kayobe container image
type: string
Expand Down Expand Up @@ -86,7 +91,7 @@ jobs:
all-in-one:
name: All in one
if: ${{ inputs.if && !cancelled() }}
runs-on: arc-skc-aio-runner
runs-on: ${{ inputs.runner }}
permissions: {}
env:
KAYOBE_ENVIRONMENT: ci-aio
Expand All @@ -96,6 +101,7 @@ jobs:
PREVIOUS_KAYOBE_IMAGE: ghcr.io/stackhpc/stackhpc-kayobe-config:stackhpc-2023.1
# NOTE(upgrade): Reference the PREVIOUS release branch here.
PREVIOUS_BRANCH: stackhpc/2023.1

steps:
- name: Install Package
uses: ConorMacBride/install-package@main
Expand Down
Loading