File tree Expand file tree Collapse file tree 1 file changed +1
-37
lines changed Expand file tree Collapse file tree 1 file changed +1
-37
lines changed Original file line number Diff line number Diff line change 32
32
pipenv install
33
33
echo win=$(pipenv run python -c 'from modules import testrail_integration as tri; print(tri.reportable("Windows"))') >> "$GITHUB_OUTPUT"
34
34
echo mac=$(pipenv run python -c 'from modules import testrail_integration as tri; print(tri.reportable("Darwin"))') >> "$GITHUB_OUTPUT"
35
- - name : Check if the l10n run is reportable
36
- id : l10n-reportable
37
- env :
38
- TESTRAIL_REPORT : true
39
- FX_L10N : true
40
- TESTRAIL_BASE_URL : ${{ secrets.TESTRAIL_BASE_URL }}
41
- TESTRAIL_API_KEY : ${{ secrets.TESTRAIL_API_KEY }}
42
- TESTRAIL_USERNAME : ${{ secrets.TESTRAIL_USERNAME }}
43
- run : |
44
- echo win_l10n=$(pipenv run python -c 'from modules import testrail_integration as tri; print(tri.reportable("Windows"))') >> "$GITHUB_OUTPUT"
45
- echo mac_l10n=$(pipenv run python -c 'from modules import testrail_integration as tri; print(tri.reportable("Darwin"))') >> "$GITHUB_OUTPUT"
46
- echo linux_l10n=$(pipenv run python -c 'from modules import testrail_integration as tri; print(tri.reportable("Linux"))') >> "$GITHUB_OUTPUT"
47
35
48
36
Run-Win-Smoke :
49
37
needs : Check-Beta-Version
59
47
uses : ./.github/workflows/smoke.yml
60
48
with :
61
49
job_to_run : Smoke-MacOS
62
- secrets : inherit
63
-
64
- Run-L10N-Mac-Smoke :
65
- needs : Check-Beta-Version
66
- if : ${{ needs.Check-Beta-Version.outputs.mac_l10n_reportable == 'True' }}
67
- uses : ./.github/workflows/l10n.yml
68
- with :
69
- job_to_run : L10N-MacOS
70
- secrets : inherit
71
-
72
- Run-L10N-Win-Smoke :
73
- needs : Check-Beta-Version
74
- if : ${{ needs.Check-Beta-Version.outputs.win_l10n_reportable == 'True' }}
75
- uses : ./.github/workflows/l10n.yml
76
- with :
77
- job_to_run : L10N-Windows
78
- secrets : inherit
79
-
80
- Run-L10N-Linux-Smoke :
81
- needs : Check-Beta-Version
82
- if : ${{ needs.Check-Beta-Version.outputs.linux_l10n_reportable == 'True' }}
83
- uses : ./.github/workflows/l10n.yml
84
- with :
85
- job_to_run : L10N-Linux
86
- secrets : inherit
50
+ secrets : inherit
You can’t perform that action at this time.
0 commit comments