From 919671c89bb9c875bdf5cdcc31e9f3e1b4214a10 Mon Sep 17 00:00:00 2001 From: Hans Ulrich Niedermann Date: Sat, 22 Jan 2022 12:02:00 +0100 Subject: CI: build automake based example project Add automake based example project using libgphoto2 to have the CI builds ensure that building a libgphoto2 frontend with this libgphoto2 is possible. --- .github/workflows/ccpp.yml | 19 ++++++++++++++++++- 1 file changed, 18 insertions(+), 1 deletion(-) (limited to '.github') diff --git a/.github/workflows/ccpp.yml b/.github/workflows/ccpp.yml index 86849e911..5f7f90ab6 100644 --- a/.github/workflows/ccpp.yml +++ b/.github/workflows/ccpp.yml @@ -18,10 +18,27 @@ jobs: - name: autoreconf run: autoreconf -i -f - name: configure - run: ./configure + run: ./configure --prefix=$PWD/__prefix - name: make run: make - name: make check run: make check - name: make distcheck run: make distcheck + - name: make install + run: make install + - name: build and run example libgphoto2 frontend (ambs-lgp2-frontend) + run: | + set -x + abs_top_builddir="$PWD" + export PKG_CONFIG_PATH="${abs_top_builddir}/__prefix/lib/pkgconfig" + export LD_LIBRARY_PATH="${abs_top_builddir}/__prefix/lib" + cd examples/ambs-lgp2-frontend + autoreconf -vis + ./configure --prefix="$PWD/__pref" + make + ldd ambs-lgp2-frontend + ./ambs-lgp2-frontend + make install + ldd __pref/bin/ambs-lgp2-frontend + __pref/bin/ambs-lgp2-frontend -- cgit v1.2.1