1
1
mirror of https://github.com/google/ormolu.git synced 2024-11-27 13:13:23 +03:00
ormolu/.circleci/config.yml

32 lines
718 B
YAML
Raw Normal View History

2018-11-25 16:34:28 +03:00
version: 2
2018-11-25 16:34:28 +03:00
jobs:
build_ghc864:
2018-11-25 16:34:28 +03:00
docker:
- image: nixos/nix:2.1.3
2018-11-25 16:34:28 +03:00
steps:
- checkout
- run:
name: Setup Cachix
command: |
nix-env -f nix/nixpkgs/ -iA cachix
USER=dummy cachix use tweag
- run:
name: Build environment
command: |
nix-shell --pure --run :
- run:
name: Push Cachix
command: |
nix-store -qR --include-outputs $(nix-instantiate default.nix) | cachix push tweag
- run:
name: Build the package (includes running the tests)
command: nix-build
2018-11-25 16:34:28 +03:00
workflows:
version: 2
build:
jobs:
- build_ghc864:
context: org-global