CI: add pyaedt integration examples #1
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Examples | |
# Controls when the workflow will run | |
on: | |
# Triggers the workflow on push or pull request events but only for the main branch | |
push: | |
tags: | |
- 'v*' | |
branches: | |
- main | |
pull_request: | |
branches: [ main ] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
env: | |
ANSYSLMD_LICENSE_FILE: ${{ format('1055@{0}', secrets.LICENSE_SERVER) }} | |
PYEDB_USE_LEGACY: '1' | |
PYEDB_CI_NO_DISPLAY: '1' | |
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | |
jobs: | |
legacy-examples: | |
name: "Check legacy examples" | |
runs-on: [ windows, pyedb, self-hosted ] | |
steps: | |
- name: "Install Git and clone project" | |
uses: actions/checkout@v4 | |
- name: "Setup Python" | |
uses: actions/setup-python@v5 | |
with: | |
cache: 'pip' | |
python-version: '3.10' | |
- name: Install pyedb | |
run: | | |
pip install . | |
- name: "Clone pyaedt on specific branch" | |
uses: actions/checkout@v4 | |
with: | |
repository: ansys/pyaedt | |
path: "external/pyaedt" | |
ref: "maint/use_pyedb" | |
- name: "Install Pyaedt" | |
run: | | |
.\.venv\Scripts\Activate.ps1 | |
pip install --no-cache-dir external/pyaedt[full] | |
- name: Execute legacy pyaedt integration examples | |
run: | | |
. .venv\Scripts\Activate.ps1 | |
Get-ChildItem -Path examples/legacy/pyaedt_integration -Filter *.py -File | ? { $_.Name -ne $excluded_example } | ForEach-Object { | |
Write-Host "Executing pyaedt integration example $($_.FullName)" | |
$time = Measure-Command {python $_.FullName} | |
Write-Host "Time taken for example $($_.FullName): $($result.TotalSeconds) seconds" | |
} |