Skip to content

Commit ecc8acb

Browse files
authored
Merge branch 'main' into Hani/cm-newegg-us-ad
2 parents 97297d4 + 831fb67 commit ecc8acb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

59 files changed

+1252
-6880
lines changed

.github/workflows/check-beta.yml

Lines changed: 24 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,9 @@ jobs:
1414
outputs:
1515
win_reportable: ${{ steps.reportable.outputs.win }}
1616
mac_reportable: ${{ steps.reportable.outputs.mac }}
17-
mac_l10n_reportable: ${{ steps.reportable.outputs.mac_l10n }}
17+
mac_l10n_reportable: ${{ steps.l10n-reportable.outputs.mac_l10n }}
18+
win_l10n_reportable: ${{ steps.l10n-reportable.outputs.win_l10n }}
19+
linux_l10n_reportable: ${{ steps.l10n-reportable.outputs.linux_l10n }}
1820
steps:
1921
- name: Checkout repository
2022
uses: actions/checkout@v4
@@ -38,7 +40,10 @@ jobs:
3840
TESTRAIL_BASE_URL: ${{ secrets.TESTRAIL_BASE_URL }}
3941
TESTRAIL_API_KEY: ${{ secrets.TESTRAIL_API_KEY }}
4042
TESTRAIL_USERNAME: ${{ secrets.TESTRAIL_USERNAME }}
41-
run: echo mac_l10n=$(pipenv run python -c 'from modules import testrail_integration as tri; print(tri.reportable("Darwin"))') >> "$GITHUB_OUTPUT"
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"
4247
4348
Run-Win-Smoke:
4449
needs: Check-Beta-Version
@@ -62,4 +67,20 @@ jobs:
6267
uses: ./.github/workflows/l10n.yml
6368
with:
6469
job_to_run: L10N-MacOS
65-
secrets: inherit
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

0 commit comments

Comments
 (0)