Skip to content

Add raftkeeper robot to generate test report #14

Add raftkeeper robot to generate test report

Add raftkeeper robot to generate test report #14

Workflow file for this run

name: pull-request
on: # yamllint disable-line rule:truthy
push:
branches:
- master
paths-ignore:
- "**.md"
- "**/docs/**"
- "**/LICENSE"
- "**/NOTICE"
- "**/benchmark/**"
- "version.txt"
- "build.sh"
pull_request:
types:
- opened
- synchronize
- reopened
paths-ignore:
- "**.md"
- "**/docs/**"
- "**/LICENSE"
- "**/NOTICE"
- "**/benchmark/**"
- "version.txt"
- "build.sh"
workflow_dispatch:
inputs:
pr:
description: "Pull request#"
required: false
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: RelWithDebInfo
# Cancel the previous workflow run in this PR.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
check-style:
uses: ./.github/workflows/check-style.yml
build:
uses: ./.github/workflows/build.yml

Check failure on line 49 in .github/workflows/pull-request.yml

View workflow run for this annotation

GitHub Actions / pull-request

Invalid workflow file

The workflow is not valid. In .github/workflows/pull-request.yml (Line: 49, Col: 11): Error from called workflow JDRaftKeeper/RaftKeeper/.github/workflows/build.yml@fb777f7231ef1b2c457e3dac071ea9b8fe07ad96 (Line: 25, Col: 14): Unexpected symbol: '+'. Located at position 35 within expression: inputs.sanitize && ' -DSANITIZE=' + inputs.sanitize
with:
build_type: RelWithDebInfo
needs: check-style
run-unit-tests:
uses: ./.github/workflows/test.yml
with:
test_type: unit
needs: build
run-integration-tests:
uses: ./.github/workflows/test.yml
with:
test_type: integration
needs: build