Skip to content
Snippets Groups Projects
This project is mirrored from https://git.savannah.gnu.org/git/guix/guix-cuirass.git/. Pull mirroring updated .
  1. Apr 23, 2021
  2. Apr 21, 2021
  3. Apr 20, 2021
  4. Apr 15, 2021
  5. Apr 14, 2021
  6. Apr 12, 2021
  7. Apr 09, 2021
  8. Apr 08, 2021
    • Mathieu Othacehe's avatar
      Fix display glitches. · d3d1f384
      Mathieu Othacehe authored
      * src/cuirass/templates.scm (specifications-table): Fix glitches.
      * src/static/css/cuirass.css (job-val): New section.
      * doc/cuirass.texi: Update it.
      Unverified
      d3d1f384
    • Mathieu Othacehe's avatar
      Add support for new build types. · 152f7a68
      Mathieu Othacehe authored
      * src/cuirass/specification.scm (%build-types): Add 'images, 'system-tests and
      'tarball support.
      * doc/cuirass.texi (Specifications): Adapt it.
      Unverified
      152f7a68
    • Mathieu Othacehe's avatar
      Add specification period support. · d86c4ede
      Mathieu Othacehe authored
      * src/sql/upgrade-4.sql: New file.
      * Makefile.am (dist_sql_DATA): Add it.
      * src/schema.sql (Specifications)[period]: New field.
      * src/cuirass/base.scm (process-specs): Honor the specification period.
      * src/cuirass/database.scm (db-get-time-since-previous-build): Rename it into ...
      (db-get-time-since-previous-eval): ... this new procedure.
      * src/cuirass/specification.scm (<specification>)[period]: New field.
      (specification->sexp, sexp->specification): Adapt accordingly.
      * src/cuirass/templates.scm (specification-edit): Ditto.
      * tests/database.scm ("db-get-time-since-previous-build"): Remame it into ...
      ("db-get-time-since-previous-eval"): ... this new procedure.
      Unverified
      d86c4ede
    • Mathieu Othacehe's avatar
      Add a jobs toggle button. · 245d0b5e
      Mathieu Othacehe authored
      * src/cuirass/database.scm (db-get-specifications-summary): Return the latest
      evaluation.
      * src/cuirass/templates.scm (specifications-table): Add a monitor and a toggle
      button.
      Unverified
      245d0b5e
    • Mathieu Othacehe's avatar
      Fix specifications summary test. · c5dd74af
      Mathieu Othacehe authored
      * tests/database.scm ("db-get-specifications-summary"): Fix it.
      Unverified
      c5dd74af
    • Mathieu Othacehe's avatar
      Add specification job summary. · 0ba07867
      Mathieu Othacehe authored
      * src/cuirass/database.scm (db-get-specifications-summary): New procedure.
      * tests/database.scm ("db-get-specifications-summary"): New test.
      * src/cuirass/templates.scm (specifications-table): Add a summary argument.
      * src/cuirass/http.scm (url-handler): Adapt it.
      Unverified
      0ba07867
    • Mathieu Othacehe's avatar
      Use the Build id as Jobs foreign key. · 2c3440de
      Mathieu Othacehe authored
      Join Build and Jobs tables using the build id instead of the build derivation
      to speed queries.
      
      * src/sql/upgrade-3.sql: New file.
      * Makefile.am (dist_sql_DATA): Add it.
      * src/schema.sql (Jobs)[derivation]: Replace it by ...
      [build]: this new column.
      * src/cuirass/database.scm (db-add-job, db-get-jobs): Adapt them.
      Unverified
      2c3440de
    • Mathieu Othacehe's avatar
      Add a spinner to dashboard page. · 065dbea5
      Mathieu Othacehe authored
      * src/cuirass/templates.scm (evaluation-dashboard): Add a spinner.
      Unverified
      065dbea5
    • Mathieu Othacehe's avatar
      Update Bootstrap to v4.2.1. · 11c34ae2
      Mathieu Othacehe authored
      * src/static/css/bootstrap.css: Update it.
      Unverified
      11c34ae2
  9. Apr 07, 2021
    • Mathieu Othacehe's avatar
      Fix job insertion with existing outputs. · 1b35a778
      Mathieu Othacehe authored
      Different derivations may result in a same build output. If a job registers a
      derivation D2 with the output O1, Cuirass may already have processed another
      derivation D1 with the same O1 output.
      
      In that case, the new job must point to the D1 derivation and not the D2
      derivation, for which no build will be triggered.
      
      * src/cuirass/database.scm (db-add-job): Fix it.
      * tests/database.scm ("db-register-builds same-outputs", "db-get-jobs
      same-outputs"): New tests.
      Unverified
      1b35a778
    • Mathieu Othacehe's avatar
      Fix dasboard margin. · 7b018bd2
      Mathieu Othacehe authored
      * src/static/css/cuirass.css (content-fixed-margin): Add flex property.
      Unverified
      7b018bd2
    • Mathieu Othacehe's avatar
      Add dashboard display. · ec0be964
      Mathieu Othacehe authored
      * src/cuirass/http.scm (url-handler): New "/eval/id/dashboard" route.
      * src/cuirass/templates.scm (evaluation-dashboard): New procedure.
      * src/static/css/cuirass.css (content-fixed-margin, dashboard, div.tooltip):
      New sections.
      Unverified
      ec0be964
  10. Apr 06, 2021
    • Mathieu Othacehe's avatar
      Add d3.js support. · 63ce1c94
      Mathieu Othacehe authored
      * src/static/js/d3.v6.min.js: New file.
      * Makefile.am (dist_js_DATA): Add it.
      * src/cuirass/http.scm (%file-white-list): Add it.
      * src/cuirass/templates.scm (html-page): Add it.
      Unverified
      63ce1c94
    • Mathieu Othacehe's avatar
      Add jobs support. · bba13114
      Mathieu Othacehe authored
      Each evaluation registration produces a list of new jobs. Until now, only the
      jobs which build outputs were not stored in the "Outputs" table were added to
      the "Builds" table.
      
      It means that Cuirass looses track of the job list associated to a given
      evaluation.  This is problematic to provide the overall build status of an
      evaluation or to find the evaluation providing the best build coverage.
      
      Add a new "Jobs" table that stores the job list of each evaluation.  Also add
      a new "/api/jobs" API to consult it.
      
      * src/sql/upgrade-2.sql: New file.
      * Makefile.am (dist_sql_DATA): Add it.
      * src/schema.sql (Jobs): New table.
      * src/cuirass/database.scm (db-add-job, db-get-jobs): New procedures.
      (db-register-builds): Call db-add-job.
      * src/cuirass/http.scm (url-handler): New "/api/jobs" route.
      * tests/database.scm ("db-get-jobs", "db-get-jobs names"): New tests.
      * doc/cuirass.texi (Web API, Database): Document it.
      Unverified
      bba13114
  11. Mar 29, 2021
Loading