Skip to content

Support python 3.9 + tutorial and experimental tested in CI #207

Support python 3.9 + tutorial and experimental tested in CI

Support python 3.9 + tutorial and experimental tested in CI #207

Workflow file for this run

name: bird-CI
on:
push:
branches: [main]
paths-ignore:
- '*.md'
- 'README*'
- 'LICENSE'
- 'assets/*'
pull_request:
branches: [main]
paths-ignore:
- '*.md'
- 'README*'
- 'LICENSE'
- 'assets/*'
jobs:
Lint:
name: Lint (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version: ['3.10']
os: ['ubuntu-latest']
defaults:
run:
working-directory: ${{github.workspace}}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{matrix.python-version}}
- name: Install dependencies
run: |
pip install black
pip install isort
pip install codespell
- name: Formatting and sorting import
run: |
source .github/linters/formatting.sh
format . true
Test-BiRD:
name: Test-BiRD (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ['3.9', '3.10', '3.11', '3.12']
os: ['ubuntu-latest', 'macos-latest']
defaults:
run:
working-directory: ${{github.workspace}}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{matrix.python-version}}
- name: Install dependencies
run: |
pip install --upgrade pip
pip install .
pip install pytest
- name: Test preprocess
run: |
pytest tests/preprocess
- name: Test mesh
run: |
pytest tests/meshing
- name: Test postprocessing
run: |
pytest tests/postprocess
Test-OF:
name: Test-OF (${{ matrix.python-version }}, ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
matrix:
python-version: ['3.10']
os: ['ubuntu-22.04']
defaults:
run:
working-directory: ${{github.workspace}}
steps:
- uses: actions/checkout@v4
- uses: actions/setup-python@v4
with:
python-version: ${{matrix.python-version}}
- uses: gerlero/setup-openfoam@v1
with:
openfoam-version: 9
- name: Install dependencies
run: |
pip install --upgrade pip
pip install .
- name: Compile solver
run: |
cd OFsolvers/applications/birdmultiphaseEulerFoam
export WM_COMPILE_OPTION=Debug
./Allwmake
cd ../../../
- name: Run bubble column tutorial
run: |
pwd
cd OFsolvers/tutorial_cases
cd bubble_column
bash run.sh