summaryrefslogtreecommitdiff
path: root/wallet/.gitlab-ci.yml
blob: 8845aa4f422e887c212819590c464413bbef9c93 (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
wallet_test:
  stage: test
  only:
    changes:
      - wallet/**/*
      - taler-kotlin-common/**/*
      - build.gradle
  script: ./gradlew :wallet:check :wallet:assembleRelease
  artifacts:
    paths:
      - wallet/build/reports/lint-results.html
    expire_in: 1 week

wallet_deploy_nightly:
  stage: deploy
  resource_group: deploy_nightly
  only:
    changes:
      - wallet/**/*
    refs:
      - master
  needs: ["wallet_test"]
  script:
    # Ensure that key exists
    - test -z "$DEBUG_KEYSTORE" && exit 0
    # Rename nightly app
    - sed -i
      's,<string name="app_name">.*</string>,<string name="app_name">Taler Wallet Nightly</string>,'
      wallet/src/main/res/values*/strings.xml
    # Set time-based version code
    - export versionCode=$(date '+%s')
    - sed -i "s,^\(\s*versionCode\) *[0-9].*,\1 $versionCode," wallet/build.gradle
    # Add commit to version name
    - export versionName=$(git rev-parse --short=7 HEAD)
    - sed -i "s,^\(\s*versionName\ *\"[0-9].*\)\",\1 ($versionName)\"," wallet/build.gradle
    # Set nightly application ID
    - sed -i "s,^\(\s*applicationId\) \"*[a-z\.].*\",\1 \"net.taler.wallet.nightly\"," wallet/build.gradle
    # Build the APK
    - ./gradlew :wallet:assembleDebug
    # START only needed while patch not accepted/released upstream
    - apt update && apt install patch
    - patch -b /usr/lib/python3/dist-packages/fdroidserver/nightly.py nightly-stats.patch
    # END
    - fdroid --version
    - CI_PROJECT_URL="https://gitlab.com/gnu-taler/fdroid-repo" CI_PROJECT_PATH="gnu-taler/fdroid-repo" fdroid nightly -v --archive-older 6