Skip to content

feat(apply): add summarize subcommand using OpenAI-compatible LLMs (#2691) #9042

feat(apply): add summarize subcommand using OpenAI-compatible LLMs (#2691)

feat(apply): add summarize subcommand using OpenAI-compatible LLMs (#2691) #9042

Workflow file for this run

name: qsvdp - Datapusher+ optimized qsv
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
workflow_dispatch:
concurrency:
group: ci-qsvdp-tests-${{ github.ref }}-1
cancel-in-progress: true
env:
CARGO_TERM_COLOR: always
jobs:
build:
# Skip CI for MCP-only commits (commit message contains "(mcp):")
if: |
github.event_name != 'push' ||
!contains(github.event.head_commit.message, '(mcp):')
runs-on: ubuntu-latest
# Hard cap so a hung test fails fast instead of burning the 6-hour GitHub default.
timeout-minutes: 90
steps:
- name: Free disk space
uses: jlumbroso/free-disk-space@54081f138730dfa15788a46383842cd2f914a1be # v1.3.1
with:
tool-cache: false
android: true
dotnet: true
haskell: true
large-packages: false
swap-storage: true
- uses: actions/checkout@v6
- name: apt-get update Ubuntu, libwayland-dev
run: |
sudo apt-get update
sudo apt-get install libwayland-dev
- name: Installing Rust toolchain
uses: dtolnay/rust-toolchain@master
with:
toolchain: stable
- name: Setup Rust-cache
uses: Swatinem/rust-cache@v2
with:
key: qsvdp-cache
- name: Run tests
# env:
# RUSTFLAGS: -C target-cpu=native
run: cargo test --verbose --locked --features=datapusher_plus