CI #535
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: CI | |
on: | |
push: | |
branches: | |
- main | |
- develop | |
pull_request: | |
workflow_dispatch: | |
schedule: | |
- cron: '0 0 * * *' # Daily “At 00:00” | |
jobs: | |
test: | |
name: Python (${{ matrix.python-version }}, ${{ matrix.os }}) | |
runs-on: ${{ matrix.os }} | |
defaults: | |
run: | |
shell: bash -l {0} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ "ubuntu-latest", "macos-latest", "macos-14" ] | |
python-version: [ "3.9", "3.10", "3.11", "3.12" ] | |
steps: | |
- name: Cancel previous runs | |
uses: styfle/[email protected] | |
with: | |
access_token: ${{ github.token }} | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
token: ${{ github.token }} | |
- name: Conda setup | |
uses: conda-incubator/setup-miniconda@v3 | |
if: matrix.os != 'macos-14' | |
with: | |
python-version: ${{ matrix.python-version }} | |
channels: conda-forge | |
environment-file: build_envs/environment.yml | |
- name: Conda setup (macOS M1) | |
uses: conda-incubator/setup-miniconda@v3 | |
if: matrix.os == 'macos-14' | |
with: | |
installer-url: https://github.com/conda-forge/miniforge/releases/download/23.11.0-0/Mambaforge-23.11.0-0-MacOSX-arm64.sh | |
python-version: ${{ matrix.python-version }} | |
channels: conda-forge | |
environment-file: build_envs/environment.yml | |
- name: Build WRF-Python | |
run: | | |
python -m pip install build | |
python -m build . | |
python -m pip install dist/wrf*.whl | |
- name: Run tests | |
run: | | |
cd test/ci_tests | |
python utests.py | |
- name: Check import | |
if: failure() | |
run: | | |
python -m pip show wrf-python | |
python -m pip show --files wrf-python | |
prefix="$(python -m pip show --files wrf-python | grep Location: | cut -f2 -d" ")" | |
echo "Site-packages directory is ${prefix}" | |
cd "${prefix}" | |
installed_files="$(python -m pip show --files wrf-python | grep -v -E -e '^[-a-zA-Z]+:')" | |
ls -l ${installed_files} | |
file ${installed_files} | |
python -vvv -dd -c "import wrf" | |
ldd $(echo ${installed_files} | grep -F -v -e ".py" -e ".dist-info") |