1
0
mirror of https://github.com/bia-technologies/yaxunit.git synced 2024-12-03 08:45:31 +02:00

ignore en errors

This commit is contained in:
alkoleft 2023-08-27 03:55:26 +03:00
parent 7fa20fd5da
commit 979fee59cd
2 changed files with 7 additions and 2 deletions

View File

@ -33,6 +33,7 @@ jobs:
v8_version: 8.3.21.1895
artifact_name: build-artifacts
locale: en_US
fail_on_failure: false
secrets: inherit
tests_windows_ru:

View File

@ -14,6 +14,10 @@ on:
artifact_name:
type: string
required: true
fail_on_failure:
type: boolean
required: false
default: true
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}-${{ inputs.v8_version }}-${{ inputs.locale }}-Linux
cancel-in-progress: true
@ -149,6 +153,6 @@ jobs:
if: always()
with:
report_paths: reports/report.xml
fail_on_failure: true
require_passed_tests: true
fail_on_failure: ${{ inputs.fail_on_failure }}
require_passed_tests: ${{ inputs.fail_on_failure }}
update_check: true