Skip to content

Commit

Permalink
Merge branch 'master' into notebooks_massfunc
Browse files Browse the repository at this point in the history
  • Loading branch information
vitenti committed Feb 1, 2023
2 parents 8c770de + 7e6b4f1 commit 56daa58
Show file tree
Hide file tree
Showing 696 changed files with 1,612,202 additions and 31,096 deletions.
17 changes: 9 additions & 8 deletions .github/workflows/build_check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- name: Install prereq
run: sudo apt-get install gobject-introspection gir1.2-glib-2.0 libgirepository1.0-dev gcc gfortran lcov pkg-config libglib2.0-dev libgmp3-dev libmpfr-dev libgsl0-dev libfftw3-dev libopenblas-dev libflint-arb-dev libcfitsio-dev libnlopt-dev libhdf5-dev python3-setuptools
run: sudo apt-get install gobject-introspection gir1.2-glib-2.0 libgirepository1.0-dev gcc gfortran lcov pkg-config libglib2.0-dev libgmp3-dev libmpfr-dev libgsl0-dev libfftw3-dev libopenblas-dev libflint-arb-dev libcfitsio-dev libnlopt-dev libhdf5-dev python3-setuptools gtk-doc-tools
- name: Autogen
run: NOCONFIGURE=yes ./autogen.sh
- name: configure
Expand All @@ -59,7 +59,7 @@ jobs:
- name: make check
run: make check -j8
- name: make code-coverage-capture
run: make code-coverage-capture CODE_COVERAGE_OUTPUT_FILE=numcosmo-coverage.info
run: make code-coverage-capture CODE_COVERAGE_OUTPUT_FILE=numcosmo-coverage.info CODE_COVERAGE_LCOV_SHOPTS_DEFAULT="--config-file lcovrc"
- name: Coveralls
uses: coverallsapp/github-action@master
with:
Expand All @@ -70,10 +70,10 @@ jobs:

runs-on: macos-latest
env:
CC: gcc-10
FC: gfortran-10
F77: gfortran-10
F90: gfortran-10
CC: gcc-11
FC: gfortran-11
F77: gfortran-11
F90: gfortran-11
LIBRARY_PATH: /usr/local/lib
LD_LIBRARY_PATH: /usr/local/lib
DYLD_LIBRARY_PATH: /usr/local/lib
Expand All @@ -83,7 +83,9 @@ jobs:
- uses: actions/checkout@v2
- name: Install prereq
run: |
brew install autoconf automake libtool gobject-introspection gsl gmp mpfr fftw cfitsio nlopt gfortran gtk-doc
brew install autoconf automake libtool gobject-introspection gsl gmp mpfr fftw cfitsio nlopt gfortran gtk-doc glib-utils glib
brew ls glib
brew ls glib-utils
- name: Autogen
run: NOCONFIGURE=yes ./autogen.sh
- name: configure
Expand All @@ -92,4 +94,3 @@ jobs:
run: make -j8
- name: make check
run: make check -j8

110 changes: 110 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ Intel/*
Optimized/*
Profiling/*
*.in
*.log
!numcosmo.pc.in
configure
compile
Expand Down Expand Up @@ -36,6 +37,8 @@ docs/references.dvi
docs/references.log
docs/references.out
scripts/*.pyc
__pycache__
.ipynb_checkpoints
*~
*.la
*.lo
Expand All @@ -46,3 +49,110 @@ scripts/*.pyc
*.deps*
*.dirstamp*
*.libs*

# Prerequisites
*.d

# Compiled Object files
*.slo
*.lo
*.o
*.obj

# Precompiled Headers
*.gch
*.pch

# Compiled Dynamic libraries
*.so
*.dylib
*.dll

# Fortran module files
*.mod
*.smod

# Compiled Static libraries
*.lai
*.la
*.a
*.lib

# Executables
*.exe
*.out
*.app
Footer

# http://www.gnu.org/software/automake

Makefile.in
/ar-lib
/mdate-sh
/py-compile
/test-driver
/ylwrap
.deps/
.dirstamp

# http://www.gnu.org/software/autoconf

autom4te.cache
/autoscan.log
/autoscan-*.log
/aclocal.m4
/compile
/config.cache
/config.guess
/config.h.in
/config.log
/config.status
/config.sub
/configure
/configure.scan
/depcomp
/install-sh
/missing
/stamp-h1

# https://www.gnu.org/software/libtool/

/ltmain.sh

# http://www.gnu.org/software/texinfo

/texinfo.tex

# http://www.gnu.org/software/m4/

aminclude_static.am
m4/libtool.m4
m4/ltoptions.m4
m4/ltsugar.m4
m4/ltversion.m4
m4/lt~obsolete.m4

# Generated Makefile
# (meta build system like autotools,
# can automatically generate from config.status script
# (which is called by configure script))
Makefile

# Docs and images
*.pdf

# Datafile
*.fits

# Eclipse
.autotools
.cproject
.idea
.project
.settings

# Compilation directories
Optimized/
BDocs/
Coverage/
MPI/
2 changes: 1 addition & 1 deletion AUTHORS
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
Sandro Dias Pinto Vitenti <sandro@isoftware.com.br>
Sandro Dias Pinto Vitenti <vitenti@uel.br>
Mariana Penna Lima <pennalima@gmail.com>
Cyrille Doux <cdoux@apc.in2p3.fr>

0 comments on commit 56daa58

Please sign in to comment.