Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: add summary of failures

...

Code Block
languageyml
name: it-client
on:
  schedule:
   - cron: '*/30 * * * *'
jobs:
  it-client:
    name: it-client
    runs-on: ubuntu-18.04
    steps:
        - uses: actions/checkout@master
          with:
            ref: leader-election-problem
        - uses: ./.github/buildenv
          with:
             args: ./hadoop-ozone/dev-support/checks/integration.sh -Dtest=TestOzoneRpcClient
          env:
            ITERATIONS: 20
        - name: Summary of failures
          run: cat target/integration/summary.txt
          if: always()
        - uses: actions/upload-artifact@master
          if: always()
          with:
            name: it-client
            path: target/integration

...