2023-04-05 08:41:24 +00:00
name : Tests
2023-04-05 08:30:32 +00:00
on :
2023-04-10 06:19:22 +00:00
pull_request :
branches :
- main
2023-04-05 08:30:32 +00:00
push :
branches :
- main
jobs :
2023-04-07 01:27:01 +00:00
build-linux :
2023-04-05 08:30:32 +00:00
runs-on : ubuntu-latest
strategy :
matrix :
2023-09-12 22:43:43 +00:00
python-version : [ "3.8" , "3.9" , "3.10" , "3.11" ]
2023-04-05 08:30:32 +00:00
steps :
- uses : actions/checkout@v3
2023-04-05 08:34:19 +00:00
with :
2023-04-05 08:35:15 +00:00
submodules : "true"
2023-04-05 08:30:32 +00:00
- name : Set up Python ${{ matrix.python-version }}
uses : actions/setup-python@v4
with :
python-version : ${{ matrix.python-version }}
- name : Install dependencies
run : |
2023-07-18 22:52:29 +00:00
python3 -m pip install --upgrade pip
python3 -m pip install .[all] -v
2023-04-05 08:30:32 +00:00
- name : Test with pytest
run : |
2023-07-18 22:52:29 +00:00
python3 -m pytest
2023-04-07 01:27:01 +00:00
build-windows :
runs-on : windows-latest
strategy :
matrix :
2023-09-12 22:43:43 +00:00
python-version : [ "3.8" , "3.9" , "3.10" , "3.11" ]
2023-04-07 01:27:01 +00:00
steps :
- uses : actions/checkout@v3
with :
submodules : "true"
- name : Set up Python ${{ matrix.python-version }}
uses : actions/setup-python@v4
with :
python-version : ${{ matrix.python-version }}
- name : Install dependencies
run : |
2023-07-18 22:52:29 +00:00
python3 -m pip install --upgrade pip
python3 -m pip install .[all] -v
2023-04-07 01:27:01 +00:00
- name : Test with pytest
run : |
2023-07-18 22:52:29 +00:00
python3 -m pytest
2023-04-07 01:27:01 +00:00
2023-04-07 01:28:03 +00:00
build-macos :
2023-04-07 01:27:01 +00:00
runs-on : macos-latest
strategy :
matrix :
2023-09-12 22:43:43 +00:00
python-version : [ "3.8" , "3.9" , "3.10" , "3.11" ]
2023-04-07 01:27:01 +00:00
steps :
- uses : actions/checkout@v3
with :
submodules : "true"
- name : Set up Python ${{ matrix.python-version }}
uses : actions/setup-python@v4
with :
python-version : ${{ matrix.python-version }}
- name : Install dependencies
run : |
2023-07-18 22:52:29 +00:00
python3 -m pip install --upgrade pip
2023-09-12 22:21:49 +00:00
python3 -m pip install .[all] --verbose
2023-04-07 01:27:01 +00:00
- name : Test with pytest
run : |
2023-11-02 01:15:01 +00:00
python3 -m pytest
2023-11-02 01:18:36 +00:00
build-linux-opencl :
2023-11-02 01:31:02 +00:00
runs-on : linux-latest
2023-11-02 01:18:36 +00:00
steps :
- uses : actions/checkout@v3
with :
submodules : "true"
- name : Set up Python 3.8
uses : actions/setup-python@v4
with :
python-version : "3.8"
- name : Set up OpenCL & CLBlast
run : |
wget -O- https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS.PUB | gpg --dearmor | sudo tee /usr/share/keyrings/oneapi-archive-keyring.gpg > /dev/null
echo "deb [signed-by=/usr/share/keyrings/oneapi-archive-keyring.gpg] https://apt.repos.intel.com/oneapi all main" | sudo tee /etc/apt/sources.list.d/oneAPI.list
sudo apt-get update
sudo apt-get install -y --no-install-recommends llvm intel-oneapi-runtime-opencl intel-oneapi-runtime-compilers libclblast-dev
- name : Install dependencies
run : |
python3 -m pip install --upgrade pip
CMAKE_ARGS="-DLLAMA_METAL=on" python3 -m pip install .[all] --verbose
- name : Test with pytest
run : |
python3 -m pytest
2023-11-02 01:15:01 +00:00
build-macos-metal :
runs-on : macos-latest
steps :
- uses : actions/checkout@v3
with :
submodules : "true"
- name : Set up Python 3.8
uses : actions/setup-python@v4
with :
python-version : "3.8"
- name : Install dependencies
run : |
python3 -m pip install --upgrade pip
CMAKE_ARGS="-DLLAMA_METAL=on" python3 -m pip install .[all] --verbose
- name : Test with pytest
run : |
python3 -m pytest