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

Commit 855e359e authored by Romain Hunault's avatar Romain Hunault 🚴🏻
Browse files

Merge branch '1-setup-gitlab-ci' into 'master'

Resolve "Setup GitLab CI"

Closes #1

See merge request e/apps/espeak-ng!2
parents 09200187 707c4ed7
Loading
Loading
Loading
Loading

.gitlab-ci.yml

0 → 100644
+23 −0
Original line number Diff line number Diff line
image: "registry.gitlab.e.foundation:5000/e/apps/docker-android-apps-cicd:latest"

stages:
- build

before_script:
- export GRADLE_USER_HOME=$(pwd)/.gradle

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

build:
  stage: build
  script:
  - ./autogen.sh
  - ./configure
  - make apk-release

  artifacts:
    paths:
    - android/build/outputs/apk/release/espeak-release-unsigned.apk
+2 −1
Original line number Diff line number Diff line
@@ -25,6 +25,7 @@ dependencies {
android {
    buildToolsVersion '28.0.3'
    compileSdkVersion 26
    ndkVersion "21.3.6528147"
    
    defaultConfig {
        minSdkVersion 14