Skip to content

Commit 839f9bd

Browse files
Merge pull request #671 from mozilla/philimon/disable_l10n_check
philimon/disable_l10n_check_runs
2 parents 4fabf88 + b383886 commit 839f9bd

File tree

1 file changed

+1
-37
lines changed

1 file changed

+1
-37
lines changed

.github/workflows/check-beta.yml

Lines changed: 1 addition & 37 deletions
Original file line numberDiff line numberDiff line change
@@ -32,18 +32,6 @@ jobs:
3232
pipenv install
3333
echo win=$(pipenv run python -c 'from modules import testrail_integration as tri; print(tri.reportable("Windows"))') >> "$GITHUB_OUTPUT"
3434
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"
4735
4836
Run-Win-Smoke:
4937
needs: Check-Beta-Version
@@ -59,28 +47,4 @@ jobs:
5947
uses: ./.github/workflows/smoke.yml
6048
with:
6149
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

0 commit comments

Comments
 (0)