DAMASK_EICMD/.github/workflows/Python.yml

84 lines
2.2 KiB
YAML
Raw Normal View History

2021-09-05 13:53:42 +05:30
name: Processing Tools
on: [push]
jobs:
2021-09-05 13:53:42 +05:30
2021-09-02 03:07:46 +05:30
pip:
2021-09-05 13:53:42 +05:30
runs-on: ${{ matrix.os }}
2021-09-05 13:53:42 +05:30
strategy:
matrix:
2023-11-21 04:35:40 +05:30
python-version: ['3.8', '3.9', '3.10', '3.11', '3.12']
os: [ubuntu-latest, macos-latest, windows-latest]
2022-04-15 19:18:21 +05:30
fail-fast: false
2021-09-05 13:53:42 +05:30
steps:
2022-11-02 20:24:48 +05:30
- uses: actions/checkout@v3
2021-09-05 13:53:42 +05:30
- name: Set up Python ${{ matrix.python-version }}
2022-11-02 20:24:48 +05:30
uses: actions/setup-python@v4
with:
python-version: ${{ matrix.python-version }}
2021-09-05 13:53:42 +05:30
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest pandas scipy h5py vtk matplotlib pyyaml build
2021-09-05 13:53:42 +05:30
2022-04-27 10:20:22 +05:30
- name: Strip git hash (Unix)
if: runner.os != 'Windows'
run: |
export VERSION=$(cat VERSION)
echo ${VERSION%-*} > VERSION
2022-05-09 01:39:10 +05:30
- name: Strip git hash (Windows)
if: runner.os == 'Windows'
run: |
$VERSION = Get-Content VERSION -first 1
$VERSION,$_ = $VERSION -Split '-g',2,"simplematch"
$VERSION | Out-File VERSION
- name: Build and Install
run: |
cd python
python -m build
python -m pip install dist/*.whl
python -c 'import damask;print(damask.__version__)'
- name: Install and run unit tests (Unix)
if: runner.os != 'Windows'
run: |
2022-05-12 04:09:19 +05:30
python -m pip install ./python --no-deps -vv
2021-09-02 12:21:45 +05:30
COLUMNS=256 pytest python
2021-09-02 03:07:46 +05:30
- name: Install and run unit tests (Windows)
if: runner.os == 'Windows'
run: |
2022-05-12 04:09:19 +05:30
python -m pip install ./python --no-deps -vv
pytest python -k 'not XDMF'
2021-09-02 03:07:46 +05:30
apt:
2021-09-05 13:53:42 +05:30
2021-09-02 03:07:46 +05:30
runs-on: ubuntu-latest
2021-09-05 13:53:42 +05:30
2021-09-02 03:07:46 +05:30
steps:
2022-11-02 20:24:48 +05:30
- uses: actions/checkout@v3
2021-09-05 13:53:42 +05:30
2021-09-02 03:07:46 +05:30
- name: Install pytest
run: |
python -m pip install --upgrade pip
pip install pytest
2021-09-05 13:53:42 +05:30
2021-09-02 03:07:46 +05:30
- name: Install dependencies
# https://github.com/actions/virtual-environments/issues/4790
2021-09-02 03:07:46 +05:30
run: >
sudo apt-get update &&
sudo apt-get remove mysql* &&
2023-03-09 00:43:49 +05:30
sudo apt-get install python3-pandas python3-scipy python3-h5py python3-vtk9 python3-matplotlib python3-yaml -y
2021-09-05 13:53:42 +05:30
2021-09-02 03:07:46 +05:30
- name: Run unit tests
run: |
2021-09-02 11:34:09 +05:30
export PYTHONPATH=${PWD}/python
COLUMNS=256 pytest python