Skip to content

Commit

Permalink
Update regression_test.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaocq2001 authored Nov 27, 2023
1 parent e18316b commit 25efcbe
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/regression_test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,14 @@ on:
inputs:
tests_to_run:
description: 'all, single or multiple of default_build_coverage error_check_build_full_coverage tracex_enable_build device_buffer_owner_build device_zero_copy_build nofx_build_coverage optimized_build standalone_device_build_coverage standalone_device_buffer_owner_build standalone_device_zero_copy_build standalone_host_build_coverage standalone_build_coverage generic_build otg_support_build memory_management_build_coverage msrc_rtos_build msrc_standalone_build'
required: true
required: false
default: 'default_build_coverage'
skip_coverage:
required: true
required: false
type: boolean
default: false
coverage_name:
required: true
required: false
default: 'default_build_coverage'
push:
branches: [ master ]
Expand All @@ -37,6 +37,6 @@ jobs:
cmake_path: ./test/cmake/usbx
build_script: ./scripts/build.sh ${{ inputs.tests_to_run }}
test_script: ./scripts/test.sh ${{ inputs.tests_to_run }}
skip_coverage: ${{ inputs.skip_coverage }}
skip_coverage: ${{ !!inputs.skip_coverage }}
coverage_name: ${{ inputs.coverage_name }}

0 comments on commit 25efcbe

Please sign in to comment.