Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
…to dgsga-v3-al
  • Loading branch information
dgsga committed May 1, 2024
2 parents 134e8a1 + 38f7c3d commit 2d85b37
Showing 1 changed file with 55 additions and 0 deletions.
55 changes: 55 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -239,6 +239,61 @@ jobs:
- name: Meson - Uninstall
run: ninja -C build uninstall

build-archlinux:
name: Archlinux
runs-on: ubuntu-22.04
container:
image: archlinux:latest
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: |
pacman -Sy --noconfirm \
autoconf \
automake \
bison \
cracklib \
dbus-glib \
flex \
gcc \
glib2 \
libtool \
make \
meson \
ninja \
pkgconfig \
talloc \
tracker3
- name: Autotools - Bootstrap
run: ./bootstrap
- name: Autotools - Configure
run: |
./configure \
--with-cracklib \
--with-init-style=systemd \
--with-tracker-pkgconfig-version=3.0
- name: Autotools - Build
run: make -j $(nproc)
- name: Autotools - Run tests
run: make check
- name: Autotools - Install
run: make install
- name: Autotools - Uninstall
run: make uninstall
- name: Meson - Configure
run: |
meson setup build \
-Dbuild-tests=true \
-Dwith-init-style=systemd
- name: Meson - Build
run: ninja -C build
- name: Meson - Run tests
run: cd build && meson test
- name: Meson - Install
run: ninja -C build install
- name: Meson - Uninstall
run: ninja -C build uninstall

build-fedora:
name: Fedora
runs-on: ubuntu-22.04
Expand Down

0 comments on commit 2d85b37

Please sign in to comment.