upd #3380
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: C/C++ CI | |
on: [push] | |
jobs: | |
build: | |
# https://github.com/actions/virtual-environments/blob/main/images/linux/Ubuntu2004-README.md | |
# runs-on: ubuntu-latestq | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: apt install | |
# run: sudo apt install csh gfortran pgplot5 libhdf4-dev libhdf5-dev libcfitsio-dev libnetcdf-dev -y | |
# run: sudo apt install csh gfortran pgplot5 | |
run: sudo apt install csh | |
- name: autoconf | |
run: autoconf | |
- name: configure | |
# run: ./configure --with-yapp=pgplot --enable-debug | |
run: ./configure --without-csh | |
- name: build1 | |
run: make build1 | |
- name: build2 | |
run: make build2 | |
- name: build3 | |
run: make build3 | |
- name: build4 | |
run: make build4 | |
- name: make check | |
run: make check checklog | |
- name: make bench | |
run: make bench | |
- name: make bench5 | |
run: make bench5 | |
build2: | |
runs-on: macos-13 | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Configure | |
run: ./configure --without-csh --disable-fortran --with-yapp=ps | |
- name: Build1 | |
run: make build1 | |
- name: Build2 | |
run: make build2 | |
- name: Build3 | |
run: make build3 | |
- name: make check | |
run: make check checklog | |
- name: make bench | |
run: make bench | |
- name: make bench5 | |
run: make bench5 |