-
Notifications
You must be signed in to change notification settings - Fork 16
32 lines (32 loc) · 964 Bytes
/
codex-test-arrow.yml
File metadata and controls
32 lines (32 loc) · 964 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
name: Codex Test - Apache Arrow Accelerator
on:
workflow_call:
inputs:
spice_version:
description: 'Spice.ai version to test'
required: false
type: string
default: 'latest'
secrets:
OPENAI_API_KEY:
required: false
workflow_dispatch:
inputs:
spice_version:
description: 'Spice.ai version to test'
required: false
type: string
default: 'latest'
jobs:
test:
uses: ./.github/workflows/codex-test-reusable.yml
with:
recipe_name: arrow
recipe_path: arrow
spice_version: ${{ inputs.spice_version }}
requires_secrets: false
additional_instructions: |
This recipe demonstrates using Apache Arrow as an in-memory acceleration engine.
Do not skip steps; any Spice/runtime error or output mismatch must fail and indicates the recipe needs updating.
secrets:
OPENAI_API_KEY: ${{ secrets.OPENAI_API_KEY }}