Skip to content

contrib/podman: add podman-restart service #3780

contrib/podman: add podman-restart service

contrib/podman: add podman-restart service #3780

Workflow file for this run

name: Build packages
on:
pull_request:
branches:
- master
paths:
- 'main/**'
- 'contrib/**'
- 'user/**'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
name: Build packages
runs-on: ubuntu-latest
if: "!contains(github.event.pull_request.title, '[ci skip]') && !contains(github.event.pull_request.body, '[ci skip]')"
steps:
- name: Install dependencies
run: sudo apt-get update && sudo apt-get install python3.11 openssl git bubblewrap wget
- name: Checkout
uses: classabbyamp/treeless-checkout-action@v1
- name: Cache cbuild data
id: cache-cbuild
uses: actions/cache@v4
env:
cache-name: cache-cbuild-data
with:
path: |
./cbuild_cache
./sources
key: ${{ runner.os }}-build-${{ env.cache-name }}
- name: Set up cbuild configuration
run: sh .ci/setup-cbuild.sh
- name: Cycle check
run: env PYTHONUNBUFFERED=1 python3.11 cbuild cycle-check
- name: Symlink check
run: env PYTHONUNBUFFERED=1 python3.11 cbuild relink-subpkgs && git diff --exit-code
- name: Build and test packages
run: env PYTHONUNBUFFERED=1 python3.11 cbuild --update-check -t bulk-pkg 'git:master..+!\[ci skip\]'