Fix typo in previous commit
[geeqie.git] / .github / workflows / check-build-actions.yml
1 name: Geeqie check build
2 run-name: ${{ github.actor }} is running Geeqie check build
3 on: [push]
4 jobs:
5   Check-Build-No-Options:
6     runs-on: ubuntu-latest
7     steps:
8     - run: sudo apt-get install build-essential libgtk-3-dev
9     - uses: actions/checkout@v3
10     - uses: actions/setup-python@v4
11     - run: sudo apt-get install xvfb
12     - uses: BSFishy/meson-build@v1.0.3
13       with:
14         action: test
15         directory: build
16         setup-options: -Darchive=disabled -Dcms=disabled -Ddevel=disabled -Ddoxygen=disabled -Ddjvu=disabled -Devince=disabled -Dexecinfo=disabled -Dexiv2=disabled -Dgit=disabled -Dgps-map=disabled -Dheif=disabled -Dj2k=disabled -Djpeg=disabled -Djpegxl=disabled -Dlibraw=disabled -Dlua=disabled -Dpandoc=disabled -Dpdf=disabled -Dspell=disabled -Dtiff=disabled -Dvideothumbnailer=disabled -Dyelp-build=disabled
17         options: --verbose
18         meson-version: 0.56.2
19     - name: Upload logs
20       uses: actions/upload-artifact@v2
21       if: always()
22       with:
23         name: logs-all
24         path: /home/runner/work/geeqie/geeqie/build/meson-logs/*.txt
25         retention-days: 5
26
27   Check-Build-Most-Options:
28     runs-on: ubuntu-latest
29     steps:
30     - run: sudo apt-get install build-essential libgtk-3-dev
31     - run: sudo apt-get install evince
32     - run: sudo apt-get install libarchive-dev
33     - run: sudo apt-get install libchamplain-0.12-dev libchamplain-gtk-0.12-dev
34     #~ - run: sudo apt-get install libffmpegthumbnailer-dev
35     - run: sudo apt-get install libgexiv2-dev
36     - run: sudo apt-get install libgspell-1-dev
37     - run: sudo apt-get install libheif-dev
38     - run: sudo apt-get install liblua5.3-dev
39     - run: sudo apt-get install libpoppler-glib-dev
40     - run: sudo apt-get install libraw-dev libomp-dev
41     - run: sudo apt-get install pandoc
42     #~ - run: sudo apt-get install yelp-tools
43     - uses: actions/checkout@v3
44     - uses: actions/setup-python@v4
45     - run: sudo apt-get install xvfb
46     - uses: BSFishy/meson-build@v1.0.3
47       with:
48         action: test
49         directory: build
50         options: --verbose
51         meson-version: 0.56.2
52     - name: Upload logs
53       uses: actions/upload-artifact@v2
54       if: always()
55       with:
56         name: logs-all
57         path: /home/runner/work/geeqie/geeqie/build/meson-logs/*.txt
58         retention-days: 5