summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 45b3044029684294638a212c7beea35858643ef0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
build:
  stage: build
  only:
    # - tags
    - gitlab-ci

  image: nixpkgs/nix

  before_script:
    - export NIX_PATH=nixpkgs=channel:nixos-unstable

  script:
    - nix-shell --command "make build"

  artifacts:
    paths:
      - "bazel-bin/app/java/dnsproxy.apk"