summaryrefslogtreecommitdiff
path: root/.gitlab-ci.yml
blob: 600eb72cde9014e18a63a107a634d54c5a260c4a (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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
---
stages:
  - docker_image_sdk
  - docker_image_other
  - build

# When using dind, it's wise to use the overlayfs driver for
# improved performance.
variables:
  DOCKER_DRIVER: overlay

.job_template: &build_docker_image
  image: 0xacab.org:4567/leap/docker/debian:stretch_amd64
  tags:
    - docker-in-docker
  services:
    - docker:dind

  before_script:
    - >
      export LAST_COMMIT=$(curl -s --header "PRIVATE-TOKEN: ${LEAP_CODE_O_MATIC_PRIVATE_TOKEN}" https://0xacab.org/api/v4/projects/578/pipelines |
      python -c "import sys, json; print json.load(sys.stdin)[1]['sha']")

  script:
    - docker --version
    - docker info
    - .gitlab/build.sh ${DOCKER_IMAGE}

docker_image:sdk:
  stage: docker_image_sdk
  variables:
    DOCKER_IMAGE: android-sdk
  <<: *build_docker_image

docker_image:ndk:
  stage: docker_image_other
  variables:
    DOCKER_IMAGE: android-ndk
  <<: *build_docker_image

docker_image:emulator:
  stage: docker_image_other
  variables:
    DOCKER_IMAGE: android-emulator
  <<: *build_docker_image

build:
  image: "${CI_REGISTRY_IMAGE}:android-ndk:latest" # "0xacab.org:4567/cyberta/bitmask_android/android-ndk:latest"
  stage: build
  script:
    - git submodule sync --recursive
    - git submodule update --init --recursive
    - ./gradlew clean assembleDebug
  artifacts:
    paths:
    - app/build/outputs/