Skip to content

builbo: some script clean-ups #12

builbo: some script clean-ups

builbo: some script clean-ups #12

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"