mirror of
https://github.com/Cheviiot/Nivora.git
synced 2026-08-03 23:57:22 +00:00
feat: create autonomous Nivora package repository
Maintain a validated cross-distribution package catalog. Automate upstream updates, isolated builds, diagnostics, and direct publication. Build the official GitHub Desktop sources for Linux with working OAuth.
This commit is contained in:
@@ -0,0 +1,47 @@
|
||||
name: CI · Ручная сборка пакетов
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
packages:
|
||||
description: "all или package ID через пробел"
|
||||
required: true
|
||||
default: all
|
||||
type: string
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
|
||||
concurrency:
|
||||
group: nivora-clean-build
|
||||
cancel-in-progress: false
|
||||
|
||||
defaults:
|
||||
run:
|
||||
shell: bash
|
||||
|
||||
jobs:
|
||||
build:
|
||||
name: Изолированная сборка
|
||||
runs-on: ubuntu-24.04
|
||||
timeout-minutes: 300
|
||||
steps:
|
||||
- name: Получить репозиторий
|
||||
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd
|
||||
|
||||
- name: Подготовить инструменты
|
||||
uses: ./.github/actions/setup-stplr-spec
|
||||
|
||||
- name: Собрать пакеты
|
||||
env:
|
||||
REQUESTED_PACKAGES: ${{ inputs.packages }}
|
||||
run: |
|
||||
if [[ "$REQUESTED_PACKAGES" == all ]]; then
|
||||
tools/clean_build.sh --all
|
||||
tools/verify_artifacts.sh --all
|
||||
NIVORA_DEB_BUILD_MODE=host tools/test_package_lifecycle.sh
|
||||
else
|
||||
read -r -a packages <<<"$REQUESTED_PACKAGES"
|
||||
tools/clean_build.sh "${packages[@]}"
|
||||
tools/verify_artifacts.sh "${packages[@]}"
|
||||
fi
|
||||
Reference in New Issue
Block a user