Skip to content

Add make install with support for prefix and GNU standard locations #12

Add make install with support for prefix and GNU standard locations

Add make install with support for prefix and GNU standard locations #12

Workflow file for this run

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
steps:
- 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: Install xchange dependency
run: sudo make -C xchange install
- name: Install RedisX dependency
run: sudo make -C redisx install
- name: Install smax-clib in default location
run: sudo make install