Skip to content

Circle CI

Lam Ngoc Khuong edited this page Nov 16, 2023 · 8 revisions

Circle CI

Configurate for the single module

  • Module: kotlin-web-spring-boot-3
  • JDK: 17.0.9

config.yml:

version: 2.1
orbs:
  gradle: circleci/[email protected]

executors:
  custom-executor:
    docker:
      - image: cimg/openjdk:<<parameters.tag>>
    parameters:
      tag:
        type: string
        default: "17.0"

workflows:
  checkout-build-test:
    jobs:
      - gradle/test:
          app_src_directory: kotlin-web-spring-boot-3/
          reports_path: build/reports/
          test_results_path: build/test-results/
          executor:
            name: "custom-executor"
            tag: "17.0.9"

References

Pages

Home

Projects

Help

Development Process

Working with Git branches

Clone this wiki locally