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

  image: nixpkgs/nix

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

  script:
    - nix-shell --command "make build"
    - cp bazel-bin/app/java/dnsproxy.apk ${CI_PROJECT_DIR}/dnsproxy.apk

  artifacts:
    paths:
      - dnsproxy.apk