aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows
AgeCommit message (Collapse)Author
2021-12-29Fix macos build on GitHub actions release-candidate.John MacFarlane
2021-12-29Restore macos build on GitHub release-candidate action.John MacFarlane
See #7767.
2021-11-17Update build files (#7696)Fabián Heredia Montiel
* Drop old windows 32-bit constraints - basement >= 0.0.10 was 0.0.12 on stackage-18.10 - foundation >= 0.0.23 was 0.0.26.1 on stackage-18.10 * Update cabal `tested-with` field to correspond to `ci.yml` matrix * ghc: 8.10.{2,4} → 8.10.7
2021-11-09Require ghc >= 8.6, base >= 4.12.John MacFarlane
This allows us to get rid of the old custom prelude and some crufty cpp. But the primary reason for this is that conduit has bumped its base lower bound to 4.12, making it impossible for us to support lower base versions.
2021-11-05CI: remove test on ghc 8.0.2.John MacFarlane
2021-10-16CI: remove linux-pdf for now.John MacFarlane
I don't know what is going on with lmodern and lualatex.
2021-10-16CI: more tweaks to pdf tests.John MacFarlane
2021-10-16CI: pdf test: need an input file!John MacFarlane
2021-10-16CI: fix yaml workflow.John MacFarlane
2021-10-16CI: add workflow to test pdf production...John MacFarlane
with xelatex, pdflatex, lualatex.
2021-09-20Stop doing lint in CI.John MacFarlane
The script failed for reasons I can't determine. For now, we disable it.
2021-09-08CI: disable ansi-tricks in tasty.John MacFarlane
This will prevent the test output from being overwhelmed with headings from passing tests.
2021-05-25CI: test with GHC 9.0.1Albert Krewinkel
2021-05-10CI: install numa library.John MacFarlane
See failure at https://github.com/jgm/pandoc/runs/2541449722
2021-04-19Fix nightly build.John MacFarlane
2021-04-18CI: Use cabal 2.4 even with ghc 8.0.2John MacFarlane
2021-03-19CI: test with different flags.John MacFarlane
2021-03-17Fix benchmark in ci.John MacFarlane
2021-03-16Fix benchmark CI to use gauge options.John MacFarlane
2021-03-06Fix linux nightly build to use ghc 8.10.3.John MacFarlane
With 9.0.1 we can't yet build all dependencies.
2021-03-02Avoid split-sections for Windows rc.John MacFarlane
We get an error "too many sections." Maybe a bug in stack? https://stackoverflow.com/questions/64287505/ld-too-many-sections-90295
2021-03-01Use -split-sections in creating release binary.John MacFarlane
This is supposed to reduce executable size.
2021-02-28Fix CI for older cabal versions.John MacFarlane
We add fields to matrix.versions to handle the cabal command prefix (v2-, new-, nothing) and whether `--test-option` is supported.
2021-02-28CI: don't use --test-option with older cabal versions (< 3).John MacFarlane
2021-02-26CI: hide successes in linux test output.John MacFarlane
2021-02-22CI: Add 'benchmark' to benchmark cache key.John MacFarlane
For benchmark we build with optimizations, so the regular cache is useless.
2021-02-22benchmark CI improvements.John MacFarlane
- don't build tests, just benchmarks. - get allocation info.
2021-02-22Rename benchmark in CI.John MacFarlane
2021-02-22Add linux benchmark to CI.John MacFarlane
2021-02-06CI: use haskell/actions/setup.John MacFarlane
actions/haskell-setup is no longer maintained.
2021-02-06CI: use cabal 2.2 when building with GHC 8.0.2. (#7085)Albert Krewinkel
2020-12-18Improve check target to test data/ too.John MacFarlane
2020-12-18Remove checkdocs from lint ci.John MacFarlane
2020-12-18Move sanity checks to lint ci.John MacFarlane
2020-12-18Add sanity checks to all CI targets.John MacFarlane
2020-12-18Add sanity checks to ci.John MacFarlane
2020-11-19JATS writer: support advanced table featuresAlbert Krewinkel
2020-11-18CI: validate JATS table outputAlbert Krewinkel
2020-11-16CI: remove setup-haskell for windows.John MacFarlane
It is no longer necessary, because ghc, cabal, and stack are pre-installed.
2020-11-16Update setup-haskell version.John MacFarlane
2020-11-07Lint code in PRs and when committing to master (#6790)Albert Krewinkel
* Remove unused LANGUAGE pragmata * Apply HLint suggestions * Configure HLint to ignore some warnings * Lint code when committing to master
2020-10-31CI: improve JATS format validator workflowAlbert Krewinkel
2020-10-31CI: validate JATS old-style writer test outputAlbert Krewinkel
2020-10-08Use ghc 8.8.4 for CI build on macOS, because it is pre-installed.John MacFarlane
2020-10-05Run nightly one hour later.John MacFarlane
2020-10-04Try to fix Windows CI by installing happy first.John MacFarlane
We're having the build fail with ``` windows\ghc-8.6.5\mingw\bin\strip.exe: unable to rename 'C:\sr\snapshots\c886f694\bin\happy.exe'; reason: File exists ```
2020-09-23Revert stack->cabal change in nightly.yml.John MacFarlane
2020-09-22release-candidate build: use latest stack on the runner.John MacFarlane
instead of installing from choco. Remove obsolete macos and win i386 sections.
2020-09-22Nightly process improvements.John MacFarlane
- Use cabal for windows. - Use most recent cabal/ghc. - Udd sha1 to executable name.
2020-09-22CI: use checkout@v2, and use haskell-setup to install stack.John MacFarlane