| Age | Commit message (Collapse) | Author | |
|---|---|---|---|
| 2017-12-11 | Merge PR #6358: [ci] Download ci-sf archives into the proper CI build dir. | Maxime Dénès | |
| 2017-12-11 | Merge PR #6351: Fix a copy-paste error in ci-ltac2. | Maxime Dénès | |
| 2017-12-11 | Merge PR #6346: [ci] CoLoR has moved to github | Maxime Dénès | |
| 2017-12-10 | [ci] Temporal workaround for checker non-backwards compatible change. | Emilio Jesus Gallego Arias | |
| 2017-12-09 | [ci] Download ci-sf archives into the proper CI build dir. | Emilio Jesus Gallego Arias | |
| Currently, `make ci-sf` downloads and builds the files in the main root directory. we fix that. | |||
| 2017-12-08 | Fix a copy-paste error in ci-ltac2. | Théo Zimmermann | |
| 2017-12-08 | Merge PR #6158: Allows a level in the raw and glob printers | Maxime Dénès | |
| 2017-12-07 | [ci] CoLoR has moved to github | Emilio Jesus Gallego Arias | |
| Closes #6194 . | |||
| 2017-12-06 | Overlay for Equations. | Gaëtan Gilbert | |
| 2017-11-30 | [ci] Test coqchk on the CompCert target. | Théo Zimmermann | |
| 2017-11-28 | [ci] [vst] Shorten compilation time to avoid Travis timeouts. | Emilio Jesus Gallego Arias | |
| We remove the progs target [examples] to save time, we still build the full library thou. I guess we can't do better for now unless we get some Travis subscription. | |||
| 2017-11-27 | Adding overlay for ltac2. | Hugo Herbelin | |
| 2017-11-25 | Overlay for stronger restrict_universe_context. | Gaëtan Gilbert | |
| 2017-11-24 | Merge PR #876: In omega or romega, recognizing Z and nat modulo conversion | Maxime Dénès | |
| 2017-11-23 | Adding ad hoc overlay for sf/vfa. | Hugo Herbelin | |
| 2017-11-22 | [plugin] Remove LocalityFixme über hack. | Emilio Jesus Gallego Arias | |
| To that extent we introduce a new prototype vernacular extension macro `VERNAC COMMAND FUNCTIONAL EXTEND` that will take a function with the proper parameters and attributes. This of course needs more refinement, in particular we should move `vernac_command` to its own file and make `Vernacentries` consistent wrt it. | |||
| 2017-11-20 | Add Equations to CI | Matthieu Sozeau | |
| 2017-11-13 | Merge PR #6126: Fix ci-bignums.sh "missing ]" error. | Maxime Dénès | |
| 2017-11-13 | Merge PR #6071: [ci] Add Ltac2 | Maxime Dénès | |
| 2017-11-09 | Fix ci-bignums.sh "missing ]" error. | Gaëtan Gilbert | |
| It made the test always fail so ci-common was always sourced. It's not quite idempotent as it adds COQBIN to PATH but it didn't lead to CI failure. | |||
| 2017-11-04 | [ci] Add Ltac2 | Jason Gross | |
| 2017-10-30 | [ci] Switch VST back to upstream. | Théo Zimmermann | |
| This finally closes #5994. | |||
| 2017-10-27 | [ci] Switch back to upstream version of Math-Classes and Corn. | Théo Zimmermann | |
| 2017-10-25 | Merge PR #6003: Point HoTT back at master, which now supports Coq master | Maxime Dénès | |
| 2017-10-23 | Point HoTT back at master, which now supports Coq master | Jason Gross | |
| 2017-10-20 | Switch testing branch back to CompCert upstream. | Théo Zimmermann | |
| This follows the merge of AbsInt/CompCert#191. | |||
| 2017-10-19 | rename ci-iris-coq -> ci-iris-lambda-rust | Ralf Jung | |
| 2017-10-19 | CI: build lambdaRust (which depends on Iris) rather than just Iris | Ralf Jung | |
| 2017-10-10 | Merge PR #1067: Iris CI: use opam to install dependencies | Maxime Dénès | |
| 2017-10-09 | Merge PR #1117: [ci] Remove temporary bignums overlay. | Maxime Dénès | |
| 2017-10-04 | [ci] Remove temporary bignums overlay. | Théo Zimmermann | |
| 2017-10-03 | Fix GeoCoq build by using a shared CI configure. | Théo Zimmermann | |
| See also GeoCoq/GeoCoq#7. | |||
| 2017-10-03 | Merge PR #1023: dev/build/windows/makecoq_mingw.sh: install camlp5's META file | Maxime Dénès | |
| 2017-09-29 | start counting at 0... | Ralf Jung | |
| 2017-09-29 | Iris CI: use opam to determine std++ git commit | Ralf Jung | |
| 2017-09-20 | In gitlab set TRAVIS_BRANCH so user overlays will work as expected. | Gaëtan Gilbert | |
| 2017-09-15 | Merge PR #979: Fix install-doc target and other gitlab failures | Maxime Dénès | |
| 2017-09-13 | Fix GitLab CI | Gaëtan Gilbert | |
| - timing needs time and python - check for compiled files without source looks in the install directory (except for make -f Makefile.ci which doesn't check), as such the install directory has been renamed to _install_ci and isn't searched. | |||
| 2017-09-08 | Move README.ci and link to it from CONTRIBUTING. | Théo Zimmermann | |
| 2017-09-07 | Merge PR #968: Better error messages on the CI | Maxime Dénès | |
| 2017-09-07 | Merge PR #914: Making the detyper lazy | Maxime Dénès | |
| 2017-09-07 | Trying to properly propagate errors in Windows CI script. | Maxime Dénès | |
| 2017-09-05 | Make AppVeyor generate Windows package. | Maxime Dénès | |
| 2017-09-05 | Fix Software Foundations build. | Maxime Dénès | |
| The Software Foundations archive has been replaced by three volumes. | |||
| 2017-09-04 | Making detyping potentially lazy. | Pierre-Marie Pédrot | |
| The internal detype function takes an additional arguments dictating whether it should be eager or lazy. We introduce a new type of delayed `DAst.t` AST nodes and use it for `glob_constr`. Such type, instead of only containing a value, it can contain a lazy computation too. We use a GADT to discriminate between both uses statically, so that no delayed terms ever happen to be marshalled (which would raise anomalies). We also fix a regression in the test-suite: Mixing laziness and effects is a well-known hell. Here, an exception that was raised for mere control purpose was delayed and raised at a later time as an anomaly. We make the offending function eager. | |||
| 2017-08-24 | Don't strip the newline, don't use \r | Jason Gross | |
| Not sure entirely what it was supposed to do, but stripping the newline erased the following line | |||
| 2017-08-24 | Swap order of "aggregating..." message and travis_fold | Jason Gross | |
| Now the folded line starts with "Aggregating..." and not with "---------" | |||
| 2017-08-24 | Only display travis_fold: on travis | Jason Gross | |
| 2017-08-15 | Move the rest of the ci target to a bash file | Jason Gross | |
| 2017-08-15 | Better error messages on the CI | Jason Gross | |
| This makes it so that when a ci target fails, we don't get red herring error messages about .ok files not existing. Since this requires bash, we make a helper script that invokes bash, so as to not depend on bash in general. | |||
