-
Notifications
You must be signed in to change notification settings - Fork 0
80 lines (64 loc) · 1.73 KB
/
build.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
name: Build
on:
push:
branches:
- main
paths:
- 'src/**'
- 'include/**'
- 'Makefile'
- '*.mk'
- '.github/workflows/build.yml'
pull_request:
paths:
- 'src/**'
- 'include/**'
- 'Makefile'
- '*.mk'
- '.github/workflows/build.yml'
jobs:
build:
name: Build library
runs-on: ubuntu-latest
env:
CC: gcc
CPPFLAGS: -I/usr/include/postgresql
CFLAGS: -Os -Wall -Wextra -Werror -std=c99
XCHANGE: ../xchange
REDISX: ../redisx
SMAXLIB: ../smax-clib
steps:
- name: install PostgreSQL
run: sudo apt-get install libpq-dev
- name: install systemd development files
run: sudo apt-get install libsystemd-dev
- name: install popt development files
run: sudo apt-get install libpopt-dev
- name: Check out smax-postgres
uses: actions/checkout@v4
with:
repository: Smithsonian/smax-postgres
path: smax-postgres
- name: Check out smax-clib
uses: actions/checkout@v4
with:
repository: Smithsonian/smax-clib
path: smax-clib
- name: Check out xchange dependency
uses: actions/checkout@v4
with:
repository: Smithsonian/xchange
path: xchange
- name: Check out RedisX dependency
uses: actions/checkout@v4
with:
repository: Smithsonian/redisx
path: redisx
- name: Build xchange dependency
run: make -C xchange shared
- name: Build RedisX dependency
run: make -C redisx shared
- name: Build shared library
run: make -C smax-clib shared
- name: Build smax-postgres application
run: make -C smax-postgres app