Skip to content

Latest commit

 

History

History
66 lines (49 loc) · 1.36 KB

java-unit-test.md

File metadata and controls

66 lines (49 loc) · 1.36 KB

Javaアプリケーションのユニットテスト

パイプラインの記述

---
resources:
- name: repo
  type: git
  source:
    uri: https://github.com/making/hello-servlet.git

jobs:
- name: unit-test
  plan:
  - get: repo
    trigger: true
  - task: mvn-test
    config:
      platform: linux
      image_resource:
        type: docker-image
        source:
          repository: maven
      inputs:
      - name: repo
      run:
        path: bash
        args:
        - -c
        - |
          set -e
          cd repo
          mvn test

パイプラインの設定

fly -t ws set-pipeline -p hello-servlet -c pipeline.yml

image.png

パイプラインのpause解除

fly -t ws unpause-pipeline -p hello-servlet

image.png

image.png

image.png

ジョブの再実行

fly -t ws trigger-job -j hello-servlet/unit-test --watch

image.png