-
Notifications
You must be signed in to change notification settings - Fork 5
90 lines (88 loc) · 2.46 KB
/
anymeal.yml
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
name: AnyMeal CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
ubuntu-build-and-test:
runs-on: ubuntu-latest
container:
image: ubuntu:latest
steps:
- uses: actions/checkout@v4
- name: Install depdendencies
run: |
apt -y update
apt -y install autoconf build-essential git flex googletest
apt -y install libqt6svg6 libsqlite3-dev qt6-base-dev
apt -y install qt6-tools-dev-tools qt6-base-dev-tools pkgconf
- name: autoreconf
run: ./autogen.sh
- name: configure
run: ./configure
- name: make
run: make
- name: check
run: make check
- name: distributable
run: make dist-xz
- name: upload
uses: actions/upload-artifact@v4
with:
name: anymeal-source
path: anymeal-*.tar.xz
fedora-build-and-test:
name: fedora-build-and-test
runs-on: ubuntu-latest
container:
image: fedora:latest
steps:
- uses: actions/checkout@v4
- name: install dependencies
run: |
dnf -y update
dnf -y install automake binutils flex gcc-c++ git gtest-devel
dnf -y install make pkgconf qt6-qtbase-devel qt6-qtsvg-devel
dnf -y install qt6-qttools-devel sqlite-devel which
- name: autoreconf
run: ./autogen.sh
- name: configure
run: ./configure
- name: make
run: make
- name: make check
run: make check
windows-installer:
runs-on: windows-2019
defaults:
run:
shell: msys2 {0}
steps:
- uses: actions/checkout@v4
- uses: msys2/setup-msys2@v2
with:
release: false
install: >-
mingw-w64-x86_64-gcc mingw-w64-x86_64-make autoconf automake make flex
bison git libtool mingw-w64-x86_64-sqlite3 mingw-w64-x86_64-gtest
mingw-w64-x86_64-iconv mingw-w64-x86_64-qt6-base
mingw-w64-x86_64-qt6-declarative mingw-w64-x86_64-qt6-svg
mingw-w64-x86_64-qt6-tools mingw-w64-x86_64-pkgconf mingw-w64-x86_64-nsis
mingw-w64-x86_64-icu mingw-w64-x86_64-libiconv mingw-w64-x86_64-pcre
mingw-w64-x86_64-pcre2
- name: autoreconf
run: ./autogen.sh
- name: configure
run: ./configure.mingw
- name: make
run: make
- name: check
run: make check
- name: nsis
run: makensis anymeal.nsi
- name: upload
uses: actions/upload-artifact@v4
with:
name: anymeal-installer
path: anymeal-installer-*.exe