Commit 8eefe951 authored by Anish Sinha's avatar Anish Sinha
Browse files

Delete .gitlab-ci.yml

parent 8e60343f
Loading
Loading
Loading
Loading

.gitlab-ci.yml

deleted100644 → 0
+0 −36
Original line number Diff line number Diff line
variables:
  ANDROID_COMPILE_SDK: "28"
  ANDROID_BUILD_TOOLS: "28.0.2"
  ANDROID_SDK_TOOLS:   "4333796"

before_script:
  - echo "Run this before every script."

stages:
  - build
  - test

builder:
  stage: build
  script:
    - echo "I am building something"
  tags: [android30]

CompileJava:
  stage: test
  script:
    - echo "Compiling Java code..."
    - cd app/src/main/java; javac com/example/a8_bitinvader/TestPositive.java
    - ls -l com/example/a8_bitinvader/TestPositive.class
  tags: [java]

JunitTestGradle:
  stage: test
  script:
    - echo "Using gradle to run JUnit tests..."
    - ./gradlew -Pci --console=plain :app:ExampleUnitTest --tests "com.example.a8_bitinvader.*"
  artifacts:
    paths:
      - app/build/test-results/ExampleUnitTest

  tags: [android30]