1
1
mirror of https://github.com/google/ormolu.git synced 2024-11-27 13:13:23 +03:00
ormolu/.circleci/config.yml
2019-08-30 12:44:14 +02:00

45 lines
1.1 KiB
YAML

version: 2
jobs:
build:
docker:
- image: nixos/nix:2.1.3
steps:
- checkout
- run:
name: Add ca-certificates
command: |
apk --no-progress update
apk --no-progress add ca-certificates
- run:
name: Setup Cachix
command: |
nix-env -iA cachix -f https://cachix.org/api/v1/install
USER=dummy cachix use tweag
- run:
name: Build environment
command: |
nix-shell --pure --run :
- run:
name: Push Cachix
command: |
if [ -n "$CACHIX_SIGNING_KEY" ];
then nix-store -qR --include-outputs $(nix-instantiate default.nix) | cachix push tweag;
fi
- run:
name: Build the package (includes running the tests)
command: nix-build --keep-going
- run:
name: Generate Haddocks
command: nix-build --attr ormolu.doc
- store_artifacts:
path: result-doc/share/doc
destination: haddock
workflows:
version: 2
build:
jobs:
- build:
context: org-global