Upgrade to Pro — share decks privately, control downloads, hide ads and more …

Haskell + Azure Pipelines

Sibi
February 13, 2019

Haskell + Azure Pipelines

Sibi

February 13, 2019
Tweet

More Decks by Sibi

Other Decks in Technology

Transcript

  1. Azure Pipelines Azure Pipelines One of the services under Azure

    Devops Used for CI/CD services Recently gaining popularity in OSS projects
  2. Advantages Advantages Build times & parallel jobs are much bigger

    Build artifacts choco, MinGW availablity for Window images
  3. Cons Cons Not all the features is available via yaml

    No caching support UI is not straightforward Bugs
  4. Yaml options Yaml options pool: vmImage: ubuntu-16.04 steps: - script:

    | export PATH=$HOME/.local/bin:$PATH stack build displayName: Build Dependencies - script: | export PATH=$HOME/.local/bin:$PATH stack test displayName: Test Package