diff options
author | Fup Duck <fupduck@sacknagel.com> | 2018-01-11 16:45:02 +0100 |
---|---|---|
committer | Fup Duck <fupduck@sacknagel.com> | 2018-01-11 16:45:02 +0100 |
commit | 8b942c746b51410f334b7303699a5ac740513ae3 (patch) | |
tree | 44ee46517c9f551ad77ca7ab405ba5bd981c5e4f /.gitlab-ci.yml | |
parent | fba19da668411f722773617b2f09726701bc3ea8 (diff) | |
parent | 68d6eb91436d0d145fd340056fd8000f7dd1ff34 (diff) |
Merge remote-tracking branch '0xacab/0.9.8' into 8802_drawer
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 4db92eb7..0edd09a9 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -3,6 +3,7 @@ stages: - docker_image_sdk - docker_image_other - build + - test # When using dind, it's wise to use the overlayfs driver for # improved performance. @@ -50,6 +51,12 @@ docker_image:emulator: DOCKER_IMAGE: android-emulator <<: *build_docker_image +unit_test: + image: "0xacab.org:4567/leap/bitmask_android/android-ndk:latest" + stage: test + script: + - ./gradlew test + build: image: "0xacab.org:4567/leap/bitmask_android/android-ndk:latest" stage: build |