Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Check new beta version - Smoke #8702

Check new beta version - Smoke

Check new beta version - Smoke #8702

Workflow file for this run

name: Check new beta version - Smoke
on:
schedule:
- cron: "40 */1 * * *"
env:
LATEST: ""
permissions:
contents: "write"
jobs:
Check-Beta-Version:
runs-on: ubuntu-latest
outputs:
win_reportable: ${{ steps.reportable.outputs.win }}
mac_reportable: ${{ steps.reportable.outputs.mac }}
mac_l10n_reportable: ${{ steps.l10n-reportable.outputs.mac_l10n }}
win_l10n_reportable: ${{ steps.l10n-reportable.outputs.win_l10n }}
linux_l10n_reportable: ${{ steps.l10n-reportable.outputs.linux_l10n }}
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Check if the run is reportable
id: reportable
env:
TESTRAIL_REPORT: true
TESTRAIL_BASE_URL: ${{ secrets.TESTRAIL_BASE_URL }}
TESTRAIL_API_KEY: ${{ secrets.TESTRAIL_API_KEY }}
TESTRAIL_USERNAME: ${{ secrets.TESTRAIL_USERNAME }}
run: |
pip3 install 'pipenv==2023.11.15';
pipenv install
echo win=$(pipenv run python -c 'from modules import testrail_integration as tri; print(tri.reportable("Windows"))') >> "$GITHUB_OUTPUT"
echo mac=$(pipenv run python -c 'from modules import testrail_integration as tri; print(tri.reportable("Darwin"))') >> "$GITHUB_OUTPUT"
Run-Win-Smoke:
needs: Check-Beta-Version
if: ${{ needs.Check-Beta-Version.outputs.win_reportable == 'True' }}
uses: ./.github/workflows/smoke.yml
with:
job_to_run: Smoke-Windows
secrets: inherit
Run-Mac-Smoke:
needs: Check-Beta-Version
if: ${{ needs.Check-Beta-Version.outputs.mac_reportable == 'True' }}
uses: ./.github/workflows/smoke.yml
with:
job_to_run: Smoke-MacOS
secrets: inherit
Morty Proxy This is a proxified and sanitized view of the page, visit original site.