Skip to content

Commit

Permalink
linux test
Browse files Browse the repository at this point in the history
  • Loading branch information
jkawamoto committed May 30, 2024
1 parent 75ca73b commit 4aae2af
Showing 1 changed file with 60 additions and 58 deletions.
118 changes: 60 additions & 58 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,80 +10,82 @@ env:
CXXFLAGS: "-std=c++17"

jobs:
build-macos:
strategy:
fail-fast: false
matrix:
os: [ macos-13, macos-14 ]
backends: [ ruy, openblas, accelerate ]
openmp: [ "", openmp ]
exclude:
- os: macos-13
backends: openblas
openmp: ""
- os: macos-14
backends: openblas
openmp: ""
runs-on: ${{ matrix.os }}

steps:
- name: Install OpenBLAS
if: ${{ matrix.backends == 'openblas' }}
run: |
brew install openblas
PREFIX=$(brew --prefix openblas)
echo "LIBRARY_PATH=$PREFIX/lib:$LIBRARY_PATH" >> $GITHUB_ENV
echo "CMAKE_PREFIX_PATH=$PREFIX:$CMAKE_PREFIX_PATH" >> $GITHUB_ENV
- name: Install OpenMP
if: ${{ matrix.openmp == 'openmp' }}
run: |
brew install libomp
PREFIX=$(brew --prefix libomp)
echo "LIBRARY_PATH=$PREFIX/lib:$LIBRARY_PATH" >> $GITHUB_ENV
echo "CMAKE_PREFIX_PATH=$PREFIX:$CMAKE_PREFIX_PATH" >> $GITHUB_ENV
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build -vv --no-default-features -F "${{ matrix.backends }} ${{ matrix.openmp }}"
- name: Run tests
run: cargo test -vv --no-default-features -F "${{ matrix.backends }} ${{ matrix.openmp }}"

# build-linux:
# build-macos:
# strategy:
# fail-fast: false
# matrix:
# feature: [ ruy, mkl, openblas ]
# runs-on: ubuntu-latest
# os: [ macos-13, macos-14 ]
# backends: [ ruy, openblas, accelerate ]
# openmp: [ "", openmp ]
# exclude:
# - os: macos-13
# backends: openblas
# - os: macos-14
# backends: openblas
# openmp: ""
# runs-on: ${{ matrix.os }}
#
# steps:
# - name: Install MKL
# if: ${{ matrix.feature == 'mkl' }}
# run: |
# wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2023.PUB
# sudo apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS-2023.PUB
# sudo sh -c 'echo deb https://apt.repos.intel.com/mkl all main > /etc/apt/sources.list.d/intel-mkl.list'
# sudo apt-get update
# sudo apt-get install -y intel-mkl-64bit-2020.4-912
# - name: Install OpenBLAS
# if: ${{ matrix.feature == 'openblas' }}
# if: ${{ matrix.backends == 'openblas' }}
# run: |
# sudo apt-get update
# sudo apt-get install -y cmake libclang-dev libopenblas-dev
# brew install openblas
# PREFIX=$(brew --prefix openblas)
# echo "LIBRARY_PATH=$PREFIX/lib:$LIBRARY_PATH" >> $GITHUB_ENV
# echo "CMAKE_PREFIX_PATH=$PREFIX:$CMAKE_PREFIX_PATH" >> $GITHUB_ENV
# - name: Install OpenMP
# if: ${{ matrix.openmp == 'openmp' }}
# run: |
# brew install libomp
# PREFIX=$(brew --prefix libomp)
# echo "LIBRARY_PATH=$PREFIX/lib:$LIBRARY_PATH" >> $GITHUB_ENV
# echo "CMAKE_PREFIX_PATH=$PREFIX:$CMAKE_PREFIX_PATH" >> $GITHUB_ENV
# - uses: actions/checkout@v4
# with:
# submodules: recursive
# - uses: dtolnay/rust-toolchain@stable
# - uses: Swatinem/rust-cache@v2
# - name: Build
# run: cargo build -vv --no-default-features -F "${{ matrix.feature }}"
# run: cargo build -vv --no-default-features -F "${{ matrix.backends }} ${{ matrix.openmp }}"
# - name: Run tests
# run: cargo test -vv --no-default-features -F "${{ matrix.backends }} ${{ matrix.openmp }}"

build-linux:
strategy:
fail-fast: false
matrix:
feature: [ ruy, mkl, openblas ]
runs-on: ubuntu-latest
env:
LIBRARY_PATH: /usr/lib/x86_64-linux-gnu

steps:
- name: Install MKL
if: ${{ matrix.feature == 'mkl' }}
run: |
wget https://apt.repos.intel.com/intel-gpg-keys/GPG-PUB-KEY-INTEL-SW-PRODUCTS-2023.PUB
sudo apt-key add GPG-PUB-KEY-INTEL-SW-PRODUCTS-2023.PUB
sudo sh -c 'echo deb https://apt.repos.intel.com/mkl all main > /etc/apt/sources.list.d/intel-mkl.list'
sudo apt-get update
sudo apt-get install -y intel-mkl-64bit-2020.4-912
pkg-config intel-mkl-64bit-2020.4-912
- name: Install OpenBLAS
if: ${{ matrix.feature == 'openblas' }}
run: |
sudo apt-get update
sudo apt-get install -y cmake libclang-dev libopenblas-dev
- uses: actions/checkout@v4
with:
submodules: recursive
- uses: dtolnay/rust-toolchain@stable
- uses: Swatinem/rust-cache@v2
- name: Build
run: cargo build -vv --no-default-features -F "${{ matrix.feature }}"
# env:
# LIBRARY_PATH: /usr/lib/x86_64-linux-gnu
# CXXFLAGS: -std=c++17
# - name: Run tests
# run: cargo test -vv --no-default-features -F "${{ matrix.feature }}"
- name: Run tests
run: cargo test -vv --no-default-features -F "${{ matrix.feature }}"
# env:
# LIBRARY_PATH: /usr/lib/x86_64-linux-gnu
# LD_LIBRARY_PATH: /opt/intel/lib/intel64
Expand Down

0 comments on commit 4aae2af

Please sign in to comment.