Skip to content
Snippets Groups Projects
Select Git revision
  • d3811e63c4f340369cd8b774df11c59836944b7c
  • main default protected
2 results

.gitignore

Blame
  • Code owners
    Assign users and groups as approvers for specific file changes. Learn more.
    .gitlab-ci.yml 340 B
    image: gradle:jdk16
    
    before_script:
      - export GRADLE_USER_HOME=`pwd`/.gradle
    
    cache:
      paths:
        - .gradle/wrapper
        - .gradle/caches
    
    package:
      stage: build
      script:
        - ./gradlew assemble
    
    java:
      stage: test
      script:
        - gradle test
      artifacts:
        when: always
        reports:
          junit: build/test-results/test/**/TEST-*.xml