Nightly Test Run #367
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: Nightly Test Run | |
on: | |
schedule: # UTC at 0400 | |
- cron: '0 4 * * *' | |
workflow_dispatch: | |
env: | |
ANSYSLMD_LICENSE_FILE: ${{ format('1055@{0}', secrets.LICENSE_SERVER) }} | |
PYFLUENT_TIMEOUT_FORCE_EXIT: 5 | |
PYFLUENT_LAUNCH_CONTAINER: 1 | |
jobs: | |
test: | |
name: Unit Testing | |
runs-on: [self-hosted, pyfluent] | |
strategy: | |
fail-fast: false | |
matrix: | |
image-tag: [v22.2.0, v23.1.0, v23.2.0, v24.1.0] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.8 | |
- name: Install pyfluent-parametric | |
run: make install | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ secrets.GH_USERNAME }} | |
password: ${{ secrets.REPO_DOWNLOAD_PAT }} | |
- name: Pull Fluent docker image | |
run: make docker-pull | |
env: | |
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }} | |
- name: Test with pytest | |
run: make unittest | |
env: | |
FLUENT_IMAGE_TAG: ${{ matrix.image-tag }} |