ci: update ci workflow to fix param issue
This commit is contained in:
parent
a84188458e
commit
51b259b87f
|
@ -9,9 +9,26 @@ on:
|
||||||
paths-ignore:
|
paths-ignore:
|
||||||
- 'packaging/**'
|
- 'packaging/**'
|
||||||
- 'docs/**'
|
- 'docs/**'
|
||||||
|
workflow_dispatch:
|
||||||
|
inputs:
|
||||||
|
specified_source_branch:
|
||||||
|
description: 'Enter the source branch name of TDengine'
|
||||||
|
required: false
|
||||||
|
default: 'unavailable'
|
||||||
|
type: string
|
||||||
|
specified_target_branch:
|
||||||
|
description: 'Enter the target branch name of TDengine'
|
||||||
|
required: false
|
||||||
|
default: 'unavailable'
|
||||||
|
type: string
|
||||||
|
specified_pr_number:
|
||||||
|
description: 'Enter the PR number of TDengine'
|
||||||
|
required: false
|
||||||
|
default: 'unavailable'
|
||||||
|
type: string
|
||||||
|
|
||||||
concurrency:
|
concurrency:
|
||||||
group: ${{ github.workflow }}-${{ github.ref }}-TDengine
|
group: ${{ github.workflow }}-${{ github.ref }}-${{ github.event.inputs.specified_target_branch }}-${{ github.event_name == 'workflow_dispatch' }}-TDengine
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
env:
|
env:
|
||||||
|
@ -30,6 +47,10 @@ jobs:
|
||||||
id: parameters
|
id: parameters
|
||||||
run: |
|
run: |
|
||||||
set -euo pipefail
|
set -euo pipefail
|
||||||
|
if ${{ github.event_name == 'wrokflow_dispatch' }}; then
|
||||||
|
run_function_test="true"
|
||||||
|
run_tdgpt_test="false"
|
||||||
|
else
|
||||||
target_branch=${{ github.event.pull_request.base.ref }}
|
target_branch=${{ github.event.pull_request.base.ref }}
|
||||||
|
|
||||||
# Fetch the latest code from the target branch
|
# Fetch the latest code from the target branch
|
||||||
|
@ -79,24 +100,33 @@ jobs:
|
||||||
echo ${{ github.event.pull_request.number }}
|
echo ${{ github.event.pull_request.number }}
|
||||||
|
|
||||||
run-tests-on-linux:
|
run-tests-on-linux:
|
||||||
uses: taosdata/.github/.github/workflows/run-tests-on-linux.yml@main
|
uses: taosdata/.github/.github/workflows/run-tests-on-linux.yml@ci/test/workflow
|
||||||
needs: fetch-parameters
|
needs: fetch-parameters
|
||||||
if: ${{ needs.fetch-parameters.outputs.run_tdgpt_test == 'true' || needs.fetch-parameters.outputs.run_function_test == 'true' }}
|
if: ${{ needs.fetch-parameters.outputs.run_tdgpt_test == 'true' || needs.fetch-parameters.outputs.run_function_test == 'true' }}
|
||||||
with:
|
with:
|
||||||
tdinternal: false
|
tdinternal: false
|
||||||
run_function_test: ${{ needs.fetch-parameters.outputs.run_function_test == 'true' }}
|
run_function_test: ${{ needs.fetch-parameters.outputs.run_function_test == 'true' }}
|
||||||
run_tdgpt_test: ${{ needs.fetch-parameters.outputs.run_tdgpt_test == 'true' }}
|
run_tdgpt_test: ${{ needs.fetch-parameters.outputs.run_tdgpt_test == 'true' }}
|
||||||
|
specified_source_branch: ${{ github.event.inputs.specified_source_branch }}
|
||||||
|
specified_target_branch: ${{ github.event.inputs.specified_target_branch }}
|
||||||
|
specified_pr_number: ${{ github.event.inputs.specified_pr_number }}
|
||||||
|
|
||||||
run-tests-on-mac:
|
run-tests-on-mac:
|
||||||
uses: taosdata/.github/.github/workflows/run-tests-on-macos.yml@main
|
uses: taosdata/.github/.github/workflows/run-tests-on-macos.yml@ci/test/workflow
|
||||||
needs: fetch-parameters
|
needs: fetch-parameters
|
||||||
if: ${{ needs.fetch-parameters.outputs.run_function_test == 'true' }}
|
if: ${{ needs.fetch-parameters.outputs.run_function_test == 'true' }}
|
||||||
with:
|
with:
|
||||||
tdinternal: false
|
tdinternal: false
|
||||||
|
specified_source_branch: ${{ github.event.inputs.specified_source_branch }}
|
||||||
|
specified_target_branch: ${{ github.event.inputs.specified_target_branch }}
|
||||||
|
specified_pr_number: ${{ github.event.inputs.specified_pr_number }}
|
||||||
|
|
||||||
run-tests-on-windows:
|
run-tests-on-windows:
|
||||||
uses: taosdata/.github/.github/workflows/run-tests-on-windows.yml@main
|
uses: taosdata/.github/.github/workflows/run-tests-on-windows.yml@ci/test/workflow
|
||||||
needs: fetch-parameters
|
needs: fetch-parameters
|
||||||
if: ${{ needs.fetch-parameters.outputs.run_function_test == 'true' }}
|
if: ${{ needs.fetch-parameters.outputs.run_function_test == 'true' }}
|
||||||
with:
|
with:
|
||||||
tdinternal: false
|
tdinternal: false
|
||||||
|
specified_source_branch: ${{ github.event.inputs.specified_source_branch }}
|
||||||
|
specified_target_branch: ${{ github.event.inputs.specified_target_branch }}
|
||||||
|
specified_pr_number: ${{ github.event.inputs.specified_pr_number }}
|
||||||
|
|
Loading…
Reference in New Issue