summaryrefslogtreecommitdiff
path: root/.github/workflows/ccpp.yml
blob: 9ad9ccb161a504f46d76687701520671512ad830 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
name: C/C++ CI

on:
  push:
    branches: [ master ]
  pull_request:
    branches: [ master ]

jobs:
  build:

    runs-on: ubuntu-latest

    steps:
    - uses: actions/checkout@v2
    - name: apt-get update
      run: sudo apt-get update
    - name: apt-get 3rd party repo libgd-dev dependency workaround
      run: sudo apt-get remove nginx libgd3
    - name: apt-get dist-upgrade
      run: sudo apt-get dist-upgrade
    - name: apt-get install
      run: sudo apt-get install -y autopoint gettext libusb-1.0-0-dev libcurl4-openssl-dev libgd-dev
    - name: autoreconf
      run: autoreconf -i -f
    - name: configure
      run: ./configure --prefix=$PWD/__prefix
    - name: make
      run: NPROC=$(nproc); set -x; make -j$NPROC -l$NPROC
    - name: make check
      run: NPROC=$(nproc); set -x; make -j$NPROC -l$NPROC check
    - name: make distcheck
      run: NPROC=$(nproc); set -x; make -j$NPROC -l$NPROC distcheck
    - name: make install
      run: NPROC=$(nproc); set -x; make -j$NPROC -l$NPROC install
    - name: make installcheck
      run: NPROC=$(nproc); set -x; make -j$NPROC -l$NPROC installcheck
    - name: build and run example libgphoto2 frontend (ambs-lgp2-frontend)
      run: |
        set -x
        exec 2>&1
        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