Skip to content

add acinerella

add acinerella #5

Workflow file for this run

---
name: Make
on:
schedule:
- cron: '0 0 1 * *'
push:
branches:
- "**"
pull_request:
branches:
- master
- main
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ${{ matrix.os }}
timeout-minutes: 120
strategy:
matrix:
os:
- ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: true
- name: Build on Linux
shell: bash
run: |
set -xeuo pipefail
sudo bash -c '
apt-get update
apt-get -y install lib{avformat,avutil,avcodec,swscale}-dev cppcheck
' >/dev/null
(
mkdir build
if pushd build;then
cmake ..
make
fi
)
find "${PWD}" -type 'f' -name 'libacinerella.so' -print -exec \
sudo cp {} /usr/lib/ + >&2
sudo ldconfig --verbose