Makefile: install only what was built #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test install | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'src/**' | |
- 'include/**' | |
- 'tools/src/**' | |
- 'Makefile' | |
- '*.mk' | |
- '.github/workflows/install.yml' | |
pull_request: | |
paths: | |
- 'src/**' | |
- 'include/**' | |
- 'tools/src/**' | |
- 'Makefile' | |
- '*.mk' | |
- '.github/workflows/install.yml' | |
jobs: | |
install: | |
runs-on: ubuntu-latest | |
env: | |
CC: gcc | |
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: install doxygen | |
run: sudo apt-get install doxygen | |
- name: Check out smax-clib | |
uses: actions/checkout@v4 | |
- name: Check out xchange | |
uses: actions/checkout@v4 | |
with: | |
repository: Smithsonian/xchange | |
path: xchange | |
- name: Check out RedisX | |
uses: actions/checkout@v4 | |
with: | |
repository: Smithsonian/redisx | |
path: redisx | |
- name: Check out smax-clib | |
uses: actions/checkout@v4 | |
with: | |
repository: Smithsonian/smax-clib | |
path: smax-clib | |
- name: Build xchange dependency | |
run: make -C xchange shared | |
- name: Install xchange dependency | |
run: sudo make -C xchange install | |
- name: Build RedisX dependency | |
run: make -C redisx shared | |
- name: Install RedisX dependency | |
run: sudo make -C redisx install | |
- name: Build smax-clib dependency | |
run: make -C smax-clib shared | |
- name: Install smax-clib dependency | |
run: sudo make -C smax-clib install | |
- name: Build smax-postgres distro | |
run: make distro | |
- name: Install smax-postgres in default location | |
run: sudo make install |