Skip to content

src: Avoid string copy. #71

src: Avoid string copy.

src: Avoid string copy. #71

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
cxx: [g++, clang++]
steps:
- uses: actions/checkout@v2
- name: dependencies
run: sudo apt-get -y install g++ clang libcfitsio-dev autoconf-archive texinfo texlive pandoc
- name: bootstrap
run: ./bootstrap
- name: configure
run: ./configure CXX=${{ matrix.cxx }}
- name: make
run: make
- name: make check
run: make check
- name: make distcheck
run: make distcheck
- name: make install
run: sudo make install
- name: make installcheck
run: LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH make installcheck
- name: make uninstall
run: sudo make uninstall