mirror of
https://github.com/ivabus/pantry
synced 2024-11-10 10:35:17 +03:00
29 lines
568 B
YAML
29 lines
568 B
YAML
|
name: ci-squared
|
||
|
run-name: ci²
|
||
|
|
||
|
on:
|
||
|
pull_request:
|
||
|
paths:
|
||
|
- .github/workflows/pkg.yml
|
||
|
- .github/workflows/pkg-for-platform.yml
|
||
|
- .github/workflows/ci-squared.yml
|
||
|
|
||
|
concurrency:
|
||
|
group: pulls/${{ github.ref }}
|
||
|
cancel-in-progress: true
|
||
|
|
||
|
jobs:
|
||
|
ci:
|
||
|
name: ci²
|
||
|
uses: ./.github/workflows/pkg.yml
|
||
|
strategy:
|
||
|
fail-fast: false
|
||
|
matrix:
|
||
|
pkg:
|
||
|
- r-wos.org/gti
|
||
|
- github.com/ggerganov/llama.cpp # has platform restrictions
|
||
|
with:
|
||
|
pkg: ${{ matrix.pkg }}
|
||
|
dry-run: true
|
||
|
secrets: inherit
|