New architecture #414
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: GitHub CI | |
on: | |
pull_request: | |
push: | |
tags: | |
- "*" | |
branches: | |
- main | |
workflow_dispatch: | |
inputs: | |
logLevel: | |
description: 'Log level' | |
required: true | |
default: 'warning' | |
env: | |
MAIN_PYTHON_VERSION: '3.10' | |
DOCUMENTATION_CNAME: 'aedt.antenna.toolkit.docs.pyansys.com' | |
LIBRARY_NAME: 'ansys-aedt-toolkits-antennas' | |
LIBRARY_NAMESPACE: 'ansys.aedt.toolkits.antennas' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
#code-style: | |
# name: "Code style" | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: ansys/actions/code-style@v4 | |
# with: | |
# python-version: ${{ env.MAIN_PYTHON_VERSION }} | |
# use-python-cache: false | |
#doc-style: | |
# name: "Documentation style" | |
# runs-on: ubuntu-latest | |
# steps: | |
# - uses: ansys/actions/doc-style@v4 | |
# with: | |
# token: ${{ secrets.GITHUB_TOKEN }} | |
#smoke-tests: | |
# name: "Build and Smoke tests" | |
# strategy: | |
# fail-fast: false | |
# matrix: | |
# os : [windows-latest, ubuntu-latest] | |
# python-version: [ '3.7', '3.10' ] | |
# runs-on: ${{ matrix.os }} | |
# steps: | |
# - uses: ansys/actions/build-wheelhouse@v4 | |
# with: | |
# library-name: ${{ env.LIBRARY_NAME }} | |
# library-namespace: ${{ env.LIBRARY_NAMESPACE }} | |
# operating-system: ${{ matrix.os }} | |
# python-version: ${{ matrix.python-version }} | |
#tests_windows: | |
# name: "Windows Tests" | |
# strategy: | |
# matrix: | |
# python-version: [ '3.7', '3.10' ] | |
# fail-fast: false | |
# runs-on: [self-hosted, pyaedt, toolkits, Windows] | |
# steps: | |
# - uses: actions/checkout@v3 | |
# - name: Set up Python | |
# uses: actions/setup-python@v4 | |
# with: | |
# python-version: ${{ matrix.python-version }} | |
# - name: Create Python venv | |
# run: | | |
# python -m venv .venv | |
# .\.venv\Scripts\Activate.ps1 | |
# - name: Install packages for testing | |
# run: | | |
# .\.venv\Scripts\Activate.ps1 | |
# python -m pip install --upgrade pip | |
# pip install --upgrade build wheel | |
# pip install .[tests] | |
# env: | |
# ANSYSLMD_LICENSE_FILE: 1055@${{ secrets.LICENSE_SERVER }} | |
# - name: Backend Testing | |
# timeout-minutes: 30 | |
# run: | | |
# .\.venv\Scripts\Activate.ps1 | |
# pytest -v --cov=pyaedt-antenna-toolkit --cov-report=xml --junitxml=junit/test-results.xml --cov-report=html tests/backend | |
# - name: Models Testing | |
# timeout-minutes: 30 | |
# run: | | |
# .\.venv\Scripts\Activate.ps1 | |
# pytest -v --cov=pyaedt-antenna-toolkit --cov-report=xml --junitxml=junit/test-results.xml --cov-report=html tests/models | |
# - name: Upload Coverage Results | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# name: coverage-html | |
# path: .cov/html | |
# retention-days: 7 | |
tests_linux: | |
name: "Linux Tests" | |
strategy: | |
matrix: | |
python-version: [ '3.7', '3.10' ] | |
fail-fast: false | |
runs-on: [ self-hosted, pyaedt, toolkits, Linux ] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Create Python venv | |
run: | | |
python -m venv .venv_linux | |
export ANSYSEM_ROOT231=/ansys_inc/v231/Linux64 | |
export LD_LIBRARY_PATH=$ANSYSEM_ROOT231/common/mono/Linux64/lib64:$ANSYSEM_ROOT231/Delcross:$LD_LIBRARY_PATH | |
- name: Install packages for testing | |
run: | | |
source .venv_linux/bin/activate | |
python -m pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host files.pythonhosted.org pip -U | |
python -m pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host files.pythonhosted.org wheel setuptools -U | |
python -c "import sys; print(sys.executable)" | |
python -m pip install --upgrade pip | |
pip install --upgrade build wheel | |
pip install .[tests] | |
pip install --trusted-host pypi.org --trusted-host pypi.python.org --trusted-host files.pythonhosted.org pytest-azurepipelines | |
env: | |
ANSYSLMD_LICENSE_FILE: 1055@${{ secrets.LICENSE_SERVER }} | |
- name: Backend Testing | |
timeout-minutes: 30 | |
run: | | |
export ANS_NODEPCHECK=1 | |
export ANSYSEM_ROOT231=/ansys_inc/v231/Linux64 | |
export LD_LIBRARY_PATH=$ANSYSEM_ROOT231/common/mono/Linux64/lib64:$ANSYSEM_ROOT231/Delcross:$LD_LIBRARY_PATH | |
source .venv_linux/bin/activate | |
pytest tests/test_00_backend_generic.py | |
# - name: Models Testing | |
# timeout-minutes: 30 | |
# run: | | |
# export ANS_NODEPCHECK=1 | |
# export ANSYSEM_ROOT231=/ansys_inc/v231/Linux64 | |
# export LD_LIBRARY_PATH=$ANSYSEM_ROOT231/common/mono/Linux64/lib64:$ANSYSEM_ROOT231/Delcross:$LD_LIBRARY_PATH | |
# source .venv_linux/bin/activate | |
# pytest -v --cov=pyaedt-antenna-toolkit --cov-report=xml --junitxml=junit/test-results.xml --cov-report=html tests/models | |
# - name: Upload Coverage Results | |
# uses: actions/upload-artifact@v3 | |
# with: | |
# name: coverage-html | |
# path: .cov/html | |
# retention-days: 7 | |
#doc-build: | |
# name: "Build documentation" | |
# runs-on: ubuntu-latest | |
# needs: [doc-style] | |
# steps: | |
# - name: update packages | |
# run: | | |
# sudo apt-get update | |
# - name: build doc | |
# uses: ansys/actions/doc-build@v4 | |
# with: | |
# python-version: ${{ env.MAIN_PYTHON_VERSION }} | |
#doc-deploy-dev: | |
# name: "Deploy development documentation" | |
# runs-on: ubuntu-latest | |
# needs: [doc-build] | |
# if: github.event_name == 'push' | |
# steps: | |
# - uses: ansys/actions/doc-deploy-dev@v4 | |
# with: | |
# cname: ${{ env.DOCUMENTATION_CNAME }} | |
# token: ${{ secrets.GITHUB_TOKEN }} | |
#doc-deploy-stable: | |
# name: "Deploy stable documentation" | |
# runs-on: ubuntu-latest | |
# needs: [doc-deploy-dev] | |
# if: github.event_name == 'push' && contains(github.ref, 'refs/tags') | |
# steps: | |
# - uses: ansys/actions/doc-deploy-stable@v4 | |
# with: | |
# cname: ${{ env.DOCUMENTATION_CNAME }} | |
# token: ${{ secrets.GITHUB_TOKEN }} | |
#build-library: | |
# name: "Build library basic example" | |
# runs-on: ubuntu-latest | |
# needs: [doc-deploy-stable] | |
# steps: | |
# - uses: ansys/actions/build-library@v4 | |
# with: | |
# library-name: ${{ env.LIBRARY_NAME }} | |
# python-version: ${{ env.MAIN_PYTHON_VERSION }} |