haskell-te: a8e8964935b4167cc8b53858f64e50fd6ae4d1b3

     1: {
     2:     // The version of the config file format.  Do not change, unless
     3:     // you know what you are doing.
     4:     "version": 1,
     5: 
     6:     // The name of the project being benchmarked
     7:     "project": "haskell-te",
     8: 
     9:     // The project's homepage
    10:     "project_url": "http://chriswarbo.net/projects/theory-exploration.html",
    11: 
    12:     // The URL or local path of the source code repository for the
    13:     // project being benchmarked
    14:     "repo": ".",
    15: 
    16:     // List of branches to benchmark
    17:     "branches": ["master"],
    18: 
    19:     // The DVCS being used
    20:     "dvcs": "git",
    21: 
    22:     // For providing environment types, etc.
    23:     "plugins": [ "asv_nix" ],
    24: 
    25:     // The tool to use to create environments
    26:     "environment_type": "nix",
    27: 
    28:     // timeout in seconds for installing any dependencies in environment
    29:     // defaults to 10 min
    30:     //"install_timeout": 600,
    31: 
    32:     // The matrix of dependencies to test.  Each key is the name of a
    33:     // dependency and the values distinguish different versions. These will be
    34:     // given as arguments to the builders.
    35:     "matrix": { "dir": [ "null" ] },
    36: 
    37:     // These build the dependencies specified in matrix
    38:     "builders": { "dir": "args: args.dir" },
    39: 
    40:     // This builds the benchmarking environment
    41:     "installer": "args: import ''${args.dir}/benchmarks'' args",
    42: 
    43:     // The directory (relative to the current directory) that benchmarks are
    44:     // stored in
    45:     "benchmark_dir": "benchmarks",
    46: 
    47:     // The directory (relative to the current directory) to cache the Python
    48:     // environments in
    49:     "env_dir": ".asv/env",
    50: 
    51:     // The directory (relative to the current directory) that raw benchmark
    52:     // results are stored in
    53:     "results_dir": ".asv/results",
    54: 
    55:     // The directory (relative to the current directory) that the html tree
    56:     // should be written to
    57:     "html_dir": ".asv/html"
    58: }

Generated by git2html.