Skip to content

NEWS.rst: Fix typo #132

NEWS.rst: Fix typo

NEWS.rst: Fix typo #132

Workflow file for this run

name: build
on:
push:
branches:
- '*'
pull_request:
branches:
- '*'
jobs:
ubuntu_22_04:
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
with:
submodules: recursive
- name: Build ladi-jack2dbus
shell: bash
run: |
sudo apt-get install libdbus-1-dev
python3 ./waf configure --prefix=/usr
python3 ./waf
python3 ./waf install --destdir=$(pwd)/destdir
ubuntu_20_04:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
with:
submodules: recursive
- name: Build ladi-jack2
shell: bash
run: |
sudo apt-get install libdbus-1-dev
python3 ./waf configure --prefix=/usr
python3 ./waf
python3 ./waf install --destdir=$(pwd)/destdir