Remove compiler warnings for generic magnetic models #711
Workflow file for this run
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: Test | |
on: [push, pull_request] | |
jobs: | |
test: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
os: [macos-latest, ubuntu-latest, windows-latest] | |
python-version: ["3.10", "3.11"] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
- name: Free Disk Space (Ubuntu) | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
uses: jlumbroso/free-disk-space@main | |
with: | |
haskell: false | |
large-packages: false | |
- name: setup apt dependencies for Linux | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
run: | | |
wget https://repo.radeon.com/amdgpu-install/6.1.1/ubuntu/jammy/amdgpu-install_6.1.60101-1_all.deb | |
sudo apt install ./amdgpu-install_6.1.60101-1_all.deb | |
sudo apt update | |
sudo apt install amdgpu-dkms | |
sudo apt install rocm | |
- name: Install Python dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install wheel setuptools | |
python -m pip install mako | |
python -m pip install numpy==1.* | |
python -m pip install scipy matplotlib docutils pytest sphinx bumps unittest-xml-reporting tinycc | |
- name: setup pyopencl on Linux + macOS | |
if: ${{ matrix.os != 'windows-latest' }} | |
run: | | |
python -m pip install pyopencl | |
- name: setup pyopencl on Windows | |
if: ${{ matrix.os == 'windows-latest' }} | |
run: | | |
python -m pip install pytools mako cffi | |
choco install opencl-intel-cpu-runtime | |
python -m pip install --only-binary=pyopencl --find-links http://www.silx.org/pub/wheelhouse/ --trusted-host www.silx.org pyopencl | |
- name: Test with pytest (only on Windows for now since PoCL is failing on Ubuntu) | |
env: | |
PYOPENCL_COMPILER_OUTPUT: 1 | |
SAS_OPENCL: none | |
run: | | |
# other CI uses the following, but `setup.py test` is a deprecated way | |
# of running tests | |
# python setup.py test --pytest-args -v | |
pytest -v | |
- name: check that the docs build (linux only) | |
if: ${{ matrix.os == 'ubuntu-latest' }} | |
env: | |
SAS_OPENCL: none | |
run: | | |
make -j 4 -C doc SPHINXOPTS="-W --keep-going -n" html | |
- name: Publish samodels docs | |
if: ${{ matrix.os == 'ubuntu-latest' && matrix.python-version == '3.10'}} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: sasmodels-docs-${{ matrix.os }}-${{ matrix.python-version }} | |
path: | | |
doc/_build/html | |
if-no-files-found: error |