Revision c3e82b1c7b6c358719f3d1dd5cf4871cde3446a7 authored by Raul Infante-Sainz on 19 March 2021, 17:52:08 UTC, committed by Mohammad Akhlaghi on 20 March 2021, 00:53:37 UTC
Until now, each time there was a problem in the configuration of Maneage'd
projects and debugging was necessary, we had to take the following changes:

 - Run the configuration on a single thread ('-j1') to see the building of
   only the problematic software.

 - Disable the Zenodo check manually by commenting those parts of
   'reproduce/software/shell/configure.sh'. Because the internet connection
   wastes a few seconds and is thus very annoying during repeated runs!

 - Manually remove the '-k' option that was passed to Make (when building
   the software). With the '-k', Make keeps going with the execution of
   other targets if something crashes and this usually causes confusions
   during the debugging.

Doing the manual changes within the code was both very annoying and prone
to errors (forgetting to correct it!).

With this commit, the existing '--debug' option has been generalized to the
software configuration phase of Maneage also. Until now, it was only
available in the analysis phase (and would directly be passed to the 'make'
command that would run the analysis). When this option is used, and the
project is in the software configuration phase, the Zenodo check won't be
done, it will use one single thread ('-j1'), and it will stop the execution
as soon as an error occurs (Make is not run with '-k').
1 parent 1524213
Raw File
.gitignore
# Files to ignore in version control (Git) -*- conf-unix -*-
# ==========================================================
#
# The files satisfying the patterns here (one per line) are ignored by
# the version control using Git, they are all outputs of the various
# tools used to built Gnuastro, so we don't need to keep their
# history.
#
# To help readability, please add new files based on the length of the
# line you wish to add.
#
# Copyright (C) 2018-2020 Mohammad Akhlaghi <mohammad@akhlaghi.org>
#
# Copying and distribution of this file, with or without modification,
# are permitted in any medium without royalty provided the copyright
# notice and this notice are preserved.  This file is offered as-is,
# without any warranty.

*~
*.txt
*.aux
*.log
*.pdf
*.out
*.zip
*.swp
.nfs*
mmap_*
*.tar.gz
*.auxlock

.tex
build
.local
.build
Makefile
tex/tikz
.gnuastro
.DS_Store
.texlive*
LOCAL.conf
tex/pipeline
LOCAL_tmp.mk
LOCAL_old.mk
gnuastro-local.conf
.compiler_test_dir_please_delete
back to top