forked from vortex-data/vortex
-
Notifications
You must be signed in to change notification settings - Fork 0
42 lines (40 loc) · 1.12 KB
/
compat-validation.yml
File metadata and controls
42 lines (40 loc) · 1.12 KB
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
33
34
35
36
37
38
39
40
41
42
name: Compat Validation
on:
schedule:
- cron: "0 6 * * 1" # Monday 6am UTC
workflow_call:
inputs:
mode:
description: "Validation mode"
required: true
default: "all"
type: string
workflow_dispatch:
inputs:
mode:
description: "Validation mode"
required: true
default: "last"
type: choice
options:
- last
- all
jobs:
compat-test:
runs-on: >-
${{ github.repository == 'vortex-data/vortex'
&& format('runs-on={0}/runner=amd64-medium/image=ubuntu24-full-x64-pre-v2/tag=compat-validation', github.run_id)
|| 'ubuntu-latest' }}
timeout-minutes: 30
steps:
- uses: runs-on/action@v2
if: github.repository == 'vortex-data/vortex'
with:
sccache: s3
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6
- uses: ./.github/actions/setup-prebuild
- name: Run compat tests
run: |
MODE="${{ inputs.mode || 'last' }}"
uv run vortex-test/compat-gen/scripts/compat.py check \
--mode "$MODE"