Skip to content

Commit

Permalink
WIP: deactivate other worklfows
Browse files Browse the repository at this point in the history
  • Loading branch information
SMoraisAnsys committed Nov 20, 2023
1 parent a1e8879 commit 3cad0b5
Show file tree
Hide file tree
Showing 2 changed files with 105 additions and 105 deletions.
102 changes: 51 additions & 51 deletions .github/workflows/legacy_examples.yml
Original file line number Diff line number Diff line change
@@ -1,51 +1,51 @@
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@v4
with:
cache: 'pip'
python-version: '3.10'

- name: Install pyedb
run: |
pip install .
- name: Execute legacy examples (except pyaedt related and 01)
run: |
# Exclude example 01_edb_example.py because it is too long
$excluded_example = "01_edb_example.py"
# TODO: once pyaedt examples are passing, use -Recurse to cover them
Get-ChildItem -Path examples/legacy -Filter *.py -File | ? { $_.Name -ne $excluded_example } | ForEach-Object {
Write-Host "Executing example $($_.FullName)"
python $_.FullName
}
# 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@v4
# with:
# cache: 'pip'
# python-version: '3.10'

# - name: Install pyedb
# run: |
# pip install .

# - name: Execute legacy examples (except pyaedt related and 01)
# run: |
# # Exclude example 01_edb_example.py because it is too long
# $excluded_example = "01_edb_example.py"
# # TODO: once pyaedt examples are passing, use -Recurse to cover them
# Get-ChildItem -Path examples/legacy -Filter *.py -File | ? { $_.Name -ne $excluded_example } | ForEach-Object {
# Write-Host "Executing example $($_.FullName)"
# python $_.FullName
# }
108 changes: 54 additions & 54 deletions .github/workflows/legacy_tests.yml
Original file line number Diff line number Diff line change
@@ -1,54 +1,54 @@
name: Tests

# 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-test:
name: "Check legacy tests"
runs-on: [ windows, pyedb, self-hosted ]
steps:
- name: "Install Git and clone project"
uses: actions/checkout@v4

- name: "Set up Python"
uses: ansys/actions/_setup-python@main
with:
python-version: '3.10'
use-cache: false

- name: "Update pip"
run: python -m pip install -U pip

- name: "Install Python library"
run: python -m pip install .

- name: "Install test requirements"
run: python -m pip install .[tests]

- name: "Executing legacy unit tests"
run: |
pytest -m "legacy and unit" -n auto -v
- name: "Executing legacy system tests (distributing on multiple CPUs)"
run: |
pytest -m "legacy and system and not no_xdist" -n auto -v
# name: Tests

# # 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-test:
# name: "Check legacy tests"
# runs-on: [ windows, pyedb, self-hosted ]
# steps:
# - name: "Install Git and clone project"
# uses: actions/checkout@v4

# - name: "Set up Python"
# uses: ansys/actions/_setup-python@main
# with:
# python-version: '3.10'
# use-cache: false

# - name: "Update pip"
# run: python -m pip install -U pip

# - name: "Install Python library"
# run: python -m pip install .

# - name: "Install test requirements"
# run: python -m pip install .[tests]

# - name: "Executing legacy unit tests"
# run: |
# pytest -m "legacy and unit" -n auto -v

# - name: "Executing legacy system tests (distributing on multiple CPUs)"
# run: |
# pytest -m "legacy and system and not no_xdist" -n auto -v

0 comments on commit 3cad0b5

Please sign in to comment.