Commit 7725fbe9 authored by Ari Trachtenberg's avatar Ari Trachtenberg
Browse files

Updated testing script

parent fffba3a0
Loading
Loading
Loading
Loading
Loading
+6 −6
Original line number Diff line number Diff line
@@ -2,11 +2,11 @@
image: androidsdk/android-30

variables:
  ANDROID_COMPILE_SDK: "28"
  ANDROID_BUILD_TOOLS: "28.0.2"
  ANDROID_COMPILE_SDK: "30"
  ANDROID_BUILD_TOOLS: "30.0.2"
  ANDROID_SDK_TOOLS:   "4333796"

#before_script:
before_script:
#  - apt-get --quiet update --yes
#  - apt-get --quiet install --yes wget tar unzip lib32stdc++6 lib32z1
#  - wget --quiet --output-document=android-sdk.zip https://dl.google.com/android/repository/sdk-tools-linux-${ANDROID_SDK_TOOLS}.zip
@@ -30,13 +30,13 @@ stages:
lintDebug:
  stage: build
  script:
    - ./gradlew -Pci --console=plain :app:lintDebug -PbuildDir=lint
    - gradlew -Pci --console=plain :app:lintDebug -PbuildDir=lint
  tags: [android30]

assembleDebug:
  stage: build
  script:
    - ./gradlew assembleDebug
    - gradlew assembleDebug
  artifacts:
    paths:
    - app/build/outputs/
@@ -45,5 +45,5 @@ assembleDebug:
debugTests:
  stage: test
  script:
    - ./gradlew -Pci --console=plain :app:testDebug
    - gradlew -Pci --console=plain :app:testDebug
  tags: [android30]
 No newline at end of file