summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: d126680031a66254d050bde8409ca03e14caeef5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
build:
  stage: build
  # only:
  #   - tags

  image: nixos/nix

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

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

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

deploy:
  stage: deploy
  # only:
  #   - tags

  needs:
    - job: build
      artifacts: true

  image: curlimages/curl:latest

  script:
    - 'curl --header "JOB-TOKEN: $CI_JOB_TOKEN" --upload-file bazel-bin/app/java/dnsproxy.apk "${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/packages/generic/apk/${CI_COMMIT_TAG}/dnsproxy.apk"'