Skip to content

modify path structure for initialize-smoke-test action #38

modify path structure for initialize-smoke-test action

modify path structure for initialize-smoke-test action #38

Workflow file for this run

name: Run Smoke Test
on:
workflow_call:
workflow_dispatch:
pull_request:
types: [opened, reopened]
branches:
- "main"
pull_request_review:
types: [submitted]
push:
paths:
- ".github/workflows/run_smoke_test.yml"
branches:
- "main"
- "*smoke*"
env:
GWS_SUBJECT_EMAIL: ${{ secrets.GWS_SUBJECT_EMAIL }}
GWS_GITHUB_AUTOMATION_CREDS: ${{ secrets.GWS_GITHUB_AUTOMATION_CREDS }}
jobs:
smoke-test-windows:
name: Smoke Test for Windows
runs-on: windows-latest
defaults:
run:
shell: powershell
steps:
- name: Initialize smoke test
uses: ./.github/actions/initialize-smoke-test
with:
python-version: "3.12"
cache-dependency-path: "requirements.txt"
- name: Setup virtualenv
run: |
pip install virtualenv
python -m venv .venv
.venv\Scripts\activate
- name: Install dependencies
run: |
python -m pip install .
pip install -r requirements.txt
pip install pytest
pip uninstall numpy
pip install numpy==1.26.4
- name: Download OPA executable
run: python download_opa.py -v 0.60.0 -os windows
- name: Execute ScubaGoggles and check for correct output
run: |
pip show scubagoggles
# Setup credentials for service account
Set-Content -Path credentials.json -Value $env:GWS_GITHUB_AUTOMATION_CREDS
pytest -s ./Testing/Functional/SmokeTests/ --subjectemail="$env:GWS_SUBJECT_EMAIL"
smoke-test-macos:
name: Smoke Test for Mac OS
runs-on: macos-latest
needs: smoke-test-windows
steps:
- name: Initialize smoke test
uses: ./.github/actions/initialize-smoke-test
with:
python-version: "3.12"
cache-dependency-path: "requirements.txt"
- name: Execute ScubaGoggles and check for correct output
run: |
echo "in second step"