Skip to content

CI: add a dogfooding check #33

CI: add a dogfooding check

CI: add a dogfooding check #33

Workflow file for this run

name: CI
on:
push:
tags:
- v*
branches:
- main
- release-*
pull_request:
branches:
- main
- release-*
# cancel the in-progress workflow when PR is refreshed.
concurrency:
group: ${{ github.workflow }}-${{ github.event_name == 'pull_request' && github.head_ref || github.sha }}
cancel-in-progress: true
permissions:
contents: read
jobs:
LaTeX:
name: build LaTex project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: install builbo
run: |
sudo make install-cli
- name: install git
run: |
sudo apt-get install -y git
- name: check out example repo and build
run: |
git clone https://github.com/obnoxxx/latex-doc-example.git
cd latex-doc-example
pwd
builbo -l latex -o suse -b -s "make doc"
tinyproxy:
name: build tinyproxy C project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: install builbo
run: |
sudo make install-cli
- name: install git
run: |
sudo apt-get install -y git
- name: check out tinyproxy repo and build
run: |
git clone https://github.com/tinyproxy/tinyproxy.git
cd tinyproxy
pwd
ls -l
builbo -l c -o fedora -b -s "./autogen.sh && make"
dogfood:
name: run self-check in builbo
runs-on: ubuntu-latest

Check failure on line 61 in .github/workflows/ci.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/ci.yml

Invalid workflow file

You have an error in your yaml syntax on line 61
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: install builbo
run: |
sudo make install-cli
- name: run self-check
run: |
builbo -l c -o fedora -d shellcheck,golang -b -s "make check"