blob: 94c0ce0724d45a57aa9eafec4d6fa76fc3f8ce16 (
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
31
32
33
|
build:
stage: build
# only:
# - tags
image: nixos/nix
before_script:
- export NIX_PATH=nixpkgs=channel:nixos-unstable
- nix-shell
script:
# - make build
- 'echo $(which make)'
- bazel build //app/java:dnsproxy
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"'
|