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

45 lines
1.1 KiB
YAML
Raw Normal View History

2018-11-25 16:34:28 +03:00
version: 2
2018-11-25 16:34:28 +03:00
jobs:
2019-08-28 15:15:35 +03:00
build:
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: Add ca-certificates
command: |
apk --no-progress update
apk --no-progress add ca-certificates
- run:
name: Setup Cachix
command: |
2019-08-28 15:15:35 +03:00
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)
2019-08-30 05:43:38 +03:00
command: nix-build --keep-going
- run:
name: Generate Haddocks
command: nix-build --attr ormolu.doc
- store_artifacts:
path: result-doc/share/doc
destination: haddock
2018-11-25 16:34:28 +03:00
workflows:
version: 2
build:
jobs:
2019-08-28 15:15:35 +03:00
- build:
context: org-global