fix(ci): reduce apt-get noise/fragility and allow per-job dispatch #112

Merged
rootiest merged 3 commits from ci-robustness-and-dispatch into main 2026-08-21 05:10:02 +00:00
+24 -8
View File
@@ -17,9 +17,20 @@ on:
- "integrations/**" - "integrations/**"
- "tests/**" - "tests/**"
workflow_dispatch: workflow_dispatch:
inputs:
job:
description: "Job to run"
required: false
default: all
type: choice
options:
- all
- test
- build-docs
jobs: jobs:
test: test:
if: github.event_name != 'workflow_dispatch' || github.event.inputs.job == 'all' || github.event.inputs.job == 'test'
runs-on: racknerd-mini runs-on: racknerd-mini
steps: steps:
- name: Checkout - name: Checkout
@@ -29,17 +40,22 @@ jobs:
- name: Install fish - name: Install fish
run: | run: |
sudo apt-get update -qq sudo apt-get -o Acquire::Retries=3 update -qq
sudo apt-get install -y software-properties-common sudo DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y software-properties-common
sudo add-apt-repository -y ppa:fish-shell/release-4 sudo add-apt-repository -y ppa:fish-shell/release-4
sudo apt-get update -qq sudo apt-get -o Acquire::Retries=3 update -qq
sudo apt-get install -y fish sudo DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y fish
- name: Run fish config tests - name: Run fish config tests
run: fish tests/run-tests.fish run: fish tests/run-tests.fish
build-docs: build-docs:
needs: test needs: test
if: |
always() &&
(github.event.inputs.job == 'build-docs' ||
((github.event_name != 'workflow_dispatch' || github.event.inputs.job == 'all') &&
needs.test.result == 'success'))
runs-on: racknerd-mini runs-on: racknerd-mini
steps: steps:
- name: Checkout - name: Checkout
@@ -49,11 +65,11 @@ jobs:
- name: Install dependencies - name: Install dependencies
run: | run: |
sudo apt-get update -qq sudo apt-get -o Acquire::Retries=3 update -qq
sudo apt-get install -y software-properties-common sudo DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y software-properties-common
sudo add-apt-repository -y ppa:fish-shell/release-4 sudo add-apt-repository -y ppa:fish-shell/release-4
sudo apt-get update -qq sudo apt-get -o Acquire::Retries=3 update -qq
sudo apt-get install -y pandoc python3-yaml fish sudo DEBIAN_FRONTEND=noninteractive apt-get install --no-install-recommends -y pandoc python3-yaml fish
- name: Generate concatenated markdown - name: Generate concatenated markdown
run: python3 docs/build-manual.py --concat -o docs/fish-config.md run: python3 docs/build-manual.py --concat -o docs/fish-config.md