about summary refs log tree commit diff
path: root/third_party/bazel/rules_nixpkgs/.circleci/config.yml
blob: 27ab177030d6ab7eaffc27cdf9c130ac92e5a4d0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
version: 2

jobs:
  build:
    docker:
      - image: nixos/nix
    working_directory: ~/rules_nixpkgs
    steps:
      - checkout
      - run:
          name: System dependencies
          command: |
            apk update --no-progress && apk --no-progress add bash ca-certificates
      - run:
          name: Run tests
          command: |
            nix-shell --pure --run 'bazel test --test_output errors //...'