Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3772caf8 authored by Mohammed Althaf T's avatar Mohammed Althaf T 😊
Browse files

mail: add gitlab CI

parent 747afdb1
Loading
Loading
Loading
Loading

.gitlab-ci.yml

0 → 100644
+29 −0
Original line number Diff line number Diff line
image: "registry.gitlab.e.foundation/e/os/docker-android-apps-cicd:master"

stages:
- build

before_script:
- export GRADLE_USER_HOME=$(pwd)/.gradle
- chmod +x ./gradlew

cache:
  key: ${CI_PROJECT_ID}
  paths:
  - .gradle/

debug:
  stage: build
  script:
  - ./gradlew :app-thunderbird:assembleFossDebug
  artifacts:
    paths:
    - app-thunderbird/build/outputs/apk/foss

release:
  stage: build
  script:
  - ./gradlew :app-thunderbird:assembleFossRelease
  artifacts:
    paths:
    - app-thunderbird/build/outputs/apk/foss