Skip to content

Commit 5b36bd0

Browse files
author
Raunak Bhagat
authored
[FEAT] Create new run workflow (Eventual-Inc#3402)
# Overview - create workflow to just minimally setup stuff on ray-cluster - not fully working yet :(
1 parent 2ae53f4 commit 5b36bd0

File tree

1 file changed

+33
-0
lines changed

1 file changed

+33
-0
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
name: Run some given command on a Ray Cluster
2+
3+
on:
4+
workflow_dispatch:
5+
inputs:
6+
daft_version:
7+
type: string
8+
description: The wheel artifact to use
9+
required: false
10+
python_version:
11+
type: string
12+
description: The version of python to use
13+
required: false
14+
default: "3.9"
15+
16+
jobs:
17+
run-tpch:
18+
runs-on: [self-hosted, linux, x64, ci-dev]
19+
timeout-minutes: 15 # Remove for ssh debugging
20+
permissions:
21+
id-token: write
22+
contents: read
23+
steps:
24+
- uses: actions/checkout@v4
25+
with:
26+
fetch-depth: 1
27+
- uses: aws-actions/configure-aws-credentials@v4
28+
with:
29+
aws-region: us-west-2
30+
role-session-name: run-command-workflow
31+
- uses: ./.github/actions/install
32+
with:
33+
python_version: ${{ inputs.python_version }}

0 commit comments

Comments
 (0)