Build and Test k-NN #46
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: Build and Test k-NN | |
on: | |
schedule: | |
- cron: '0 0 * * *' # every night | |
push: | |
branches: | |
- "*" | |
- "feature/**" | |
pull_request: | |
branches: | |
- "*" | |
- "feature/**" | |
jobs: | |
Get-CI-Image-Tag: | |
uses: opensearch-project/opensearch-build/.github/workflows/get-ci-image-tag.yml@main | |
with: | |
product: opensearch | |
Build-k-NN-Linux: | |
strategy: | |
matrix: | |
java: [11, 17, 21] | |
name: Build and Test k-NN Plugin on Linux | |
runs-on: ubuntu-latest | |
needs: Get-CI-Image-Tag | |
container: | |
# using the same image which is used by opensearch-build team to build the OpenSearch Distribution | |
# this image tag is subject to change as more dependencies and updates will arrive over time | |
image: ${{ needs.Get-CI-Image-Tag.outputs.ci-image-version-linux }} | |
# need to switch to root so that github actions can install runner binary on container without permission issues. | |
options: --user root | |
steps: | |
- name: Checkout k-NN | |
uses: actions/checkout@v1 | |
with: | |
submodules: true | |
# Git functionality in CMAKE file does not work with given ubuntu image. Therefore, handling it here. | |
- name: Apply Git Patch | |
# Deleting file at the end to skip `git apply` inside CMAKE file | |
run: | | |
cd jni/external/faiss | |
git apply --ignore-space-change --ignore-whitespace --3way ../../patches/faiss/0001-Custom-patch-to-support-multi-vector.patch | |
rm ../../patches/faiss/0001-Custom-patch-to-support-multi-vector.patch | |
git apply --ignore-space-change --ignore-whitespace --3way ../../patches/faiss/0002-Enable-precomp-table-to-be-shared-ivfpq.patch | |
rm ../../patches/faiss/0002-Enable-precomp-table-to-be-shared-ivfpq.patch | |
cd ../nmslib | |
git apply --ignore-space-change --ignore-whitespace --3way ../../patches/nmslib/0001-Initialize-maxlevel-during-add-from-enterpoint-level.patch | |
rm ../../patches/nmslib/0001-Initialize-maxlevel-during-add-from-enterpoint-level.patch | |
working-directory: ${{ github.workspace }} | |
- name: Setup Java ${{ matrix.java }} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
- name: Run build | |
# switching the user, as OpenSearch cluster can only be started as root/Administrator on linux-deb/linux-rpm/windows-zip. | |
run: | | |
chown -R 1000:1000 `pwd` | |
if lscpu | grep -i avx2 | |
then | |
echo "avx2 available on system" | |
su `id -un 1000` -c "whoami && java -version && ./gradlew build" | |
else | |
echo "avx2 not available on system" | |
su `id -un 1000` -c "whoami && java -version && ./gradlew build -Dsimd.enabled=false" | |
fi | |
- name: Upload Coverage Report | |
uses: codecov/codecov-action@v1 | |
with: | |
token: ${{ secrets.CODECOV_TOKEN }} | |
Build-k-NN-MacOS: | |
strategy: | |
matrix: | |
java: [ 11, 17, 21 ] | |
name: Build and Test k-NN Plugin on MacOS | |
needs: Get-CI-Image-Tag | |
runs-on: macos-latest | |
steps: | |
- name: Checkout k-NN | |
uses: actions/checkout@v1 | |
- name: Setup Java ${{ matrix.java }} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
- name: Install dependencies on macos | |
run: | | |
brew reinstall gcc | |
export FC=/usr/local/Cellar/gcc/12.2.0/bin/gfortran | |
- name: Run build | |
run: | | |
if sysctl -n machdep.cpu.features machdep.cpu.leaf7_features | grep -i AVX2 | |
then | |
echo "avx2 available on system" | |
./gradlew build | |
else | |
echo "avx2 not available on system" | |
./gradlew build -Dsimd.enabled=false | |
fi | |
Build-k-NN-Windows: | |
strategy: | |
matrix: | |
java: [ 11, 17, 21 ] | |
name: Build and Test k-NN Plugin on Windows | |
needs: Get-CI-Image-Tag | |
runs-on: windows-latest | |
steps: | |
- name: Checkout k-NN | |
uses: actions/checkout@v1 | |
- name: Setup Java ${{ matrix.java }} | |
uses: actions/setup-java@v1 | |
with: | |
java-version: ${{ matrix.java }} | |
- name: Install MinGW Using Scoop | |
run: | | |
iex "& {$(irm get.scoop.sh)} -RunAsAdmin" | |
scoop bucket add main | |
scoop install mingw | |
- name: Add MinGW to PATH | |
run: | | |
echo "C:/Users/runneradmin/scoop/apps/mingw/current/bin" >> $env:GITHUB_PATH | |
Import-Module "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1" | |
refreshenv | |
- name: Install Zlib Using Scoop | |
run: | | |
echo "C:/Users/runneradmin/scoop/shims" >> $env:GITHUB_PATH | |
Import-Module "$env:ChocolateyInstall\helpers\chocolateyProfile.psm1" | |
refreshenv | |
scoop bucket add extras | |
scoop install zlib | |
regedit /s "C:\\Users\\runneradmin\\scoop\\apps\\zlib\\current\\register.reg" | |
- name: Download OpenBLAS | |
run: | | |
curl -L -O https://github.com/xianyi/OpenBLAS/releases/download/v0.3.21/OpenBLAS-0.3.21-x64.zip | |
mkdir OpenBLAS | |
Expand-Archive -Path .\OpenBLAS-0.3.21-x64.zip -DestinationPath .\OpenBLAS\ | |
mkdir ./src/main/resources/windowsDependencies | |
cp ./OpenBLAS/bin/libopenblas.dll ./src/main/resources/windowsDependencies/ | |
rm .\OpenBLAS-0.3.21-x64.zip | |
rm -r .\OpenBLAS\ | |
- name: Run build | |
run: | | |
./gradlew.bat build -D'simd.enabled=false' | |