Go to file
2024-07-23 21:04:34 +02:00
artifacts/nickel Almost solved the removing of bash login messages from outputs (#18) but still needs some work ("dace" pip package incorrectly displayed for deinsum). 2024-07-23 21:04:34 +02:00
blacklists Written a doc for the output. Removed the "type" attribute from the Nickel contract, closing #17. 2024-07-19 16:18:49 +02:00
config add prefix to config 2024-07-21 16:14:58 +02:00
workflow Merge remote-tracking branch 'origin/workflow_config' 2024-07-23 17:26:03 +02:00
.gitignore move artifacts_nickel and artifacts_json to artifacts/nickel and artifacts/json 2024-07-19 16:38:18 +02:00
blacklist.csv basic workflow for ecg 2024-07-11 15:17:16 +02:00
check.ncl Fixed Nickel contract and check files. Fixed input/output files in Snakefile. 2024-07-16 17:35:09 +02:00
clean.sh Added support for cache. Added run and clean scripts. 2024-07-12 12:10:03 +02:00
ecg.py Almost solved the removing of bash login messages from outputs (#18) but still needs some work ("dace" pip package incorrectly displayed for deinsum). 2024-07-23 21:04:34 +02:00
flake.lock first try for g5k execution 2024-07-20 15:41:56 +02:00
flake.nix first try for g5k execution 2024-07-20 15:41:56 +02:00
LICENSE Added license. 2024-07-16 16:04:02 +02:00
README.md Small doc fixes. 2024-07-19 16:23:39 +02:00
run.sh Added artifact hash logging, closing #3. 2024-07-16 12:04:29 +02:00

Study of the Reproducibility and Longevity of Dockerfiles

ECG is a program that automates software environment checking for scientific artifacts.

It is meant to be executed periodically to analyze variations in the software environment of the artifact through time.

How it works

ECG takes as input a JSON configuration telling where to download the artifact, where to find the Dockerfile to build in the artifact, and which package managers are used by the Docker container.

It will then download the artifact, build the Dockerfile, and then create a list of the installed packages in the Docker container. It also stores the potential errors encountered when building the Dockerfile, and logs the hash of the artifact for future comparison.

Setup

A Linux operating system and the following packages are required:

  • snakemake
  • gawk
  • nickel

The following Python package is also required:

  • requests

Otherwise, you can use the Nix package manager and run nix develop in this directory to setup the full software environment.

Usage

Run ecg.py as follow:

python3 ecg.py <config_file> -p <pkglist_path> -l <log_file> -b <build_status_file> -a <artifact_hash_log> -c <cache_directory>

Where:

  • <config_file> is the configuration file of the artifact in JSON format. An example is given in artifacts_json/test.json.
  • <pkglist_path> is the path to the file where the package list generated by the program should be written.
  • <log_file> is the path to the file where to log the output of the program.
  • <build_status_file> is the path to the file where to write the build summary of the Docker image given in the configuration file.
  • <artifact_hash_log> is the path to the file where to log the hash of the downloaded artifact.
  • <cache_directory> is the path to the cache directory, where downloaded artifacts will be stored for future usage. If not specified, cache is disabled.

Output

Package list

The list of packages installed in the container, depending on the package managers, Git packages and other miscellaneous packages given in the config file, in the form of a CSV file, with the following columns in order:

Package name Version Package manager

For Git packages, the hash of the last commit is used as version number. For miscellaneous packages, the hash of the file that has been used to install the package is used as version number.

Output log

Just a plain text file containing the output of the script.

Build status file

The log of the failed attempts to build the Docker image, in the form of a CSV file, with the following columns in order:

Config file path Timestamp Reason category

The timestamp corresponds to when the error is being logged, not to when it happened.

The following are the categories of reasons explaining why the building failed:

  • package_unavailable: A command requested the installation of a package that is not available.
  • baseimage_unavailable: The base image needed for this container is not available.
  • unknown_error: Any other error.

Artifact hash log

The log of the hash of the artifact archive file, in the form of a CSV file, with the following columns in order:

Timestamp Hash

The timestamp corresponds to when the hash has been logged, not to when the artifact has been downloaded.

License

This project is licensed under the GNU General Public License version 3. You can find the terms of the license in the file LICENSE.