Add cuda-toolkit package dependency to faiss-gpu and faiss-gpu-raft conda build recipes #191
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: Build | |
on: | |
workflow_dispatch: | |
pull_request: | |
branches: | |
- main | |
push: | |
tags: | |
- 'v*' | |
env: | |
OMP_NUM_THREADS: '10' | |
MKL_THREADING_LAYER: GNU | |
jobs: | |
format: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
- name: Install clang-format | |
run: | | |
sudo apt-get update -y | |
sudo apt-get install -y wget | |
sudo apt install -y lsb-release wget software-properties-common gnupg | |
wget https://apt.llvm.org/llvm.sh | |
chmod u+x llvm.sh | |
sudo ./llvm.sh 18 | |
sudo apt-get install -y git-core clang-format-18 | |
- name: Verify clang-format | |
run: | | |
git ls-files | grep -E '\.(cpp|h|cu|cuh)$' | xargs clang-format-18 -i | |
if git diff --quiet; then | |
echo "Formatting OK!" | |
else | |
echo "Formatting not OK!" | |
echo "------------------" | |
git --no-pager diff --color | |
exit 1 | |
fi | |
linux-x86_64-cmake: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
- uses: ./.github/actions/build_cmake | |
linux-x86_64-AVX2-cmake: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
- uses: ./.github/actions/build_cmake | |
with: | |
opt_level: avx2 | |
linux-x86_64-AVX512-cmake: | |
if: false # TODO: enable when GitHub Actions adds AVX-512 hosts | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
- uses: ./.github/actions/build_cmake | |
with: | |
opt_level: avx512 | |
linux-x86_64-GPU-cmake: | |
needs: linux-x86_64-AVX2-cmake | |
runs-on: 4-core-ubuntu-gpu-t4 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
- uses: ./.github/actions/build_cmake | |
with: | |
gpu: ON | |
linux-x86_64-GPU-w-RAFT-cmake: | |
runs-on: 4-core-ubuntu-gpu-t4 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
- uses: ./.github/actions/build_cmake | |
with: | |
gpu: ON | |
raft: ON | |
linux-x86_64-conda: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- uses: ./.github/actions/build_conda | |
windows-x86_64-conda: | |
runs-on: windows-2019 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- uses: ./.github/actions/build_conda | |
linux-arm64-conda: | |
runs-on: 2-core-ubuntu-arm | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- uses: ./.github/actions/build_conda | |
linux-x86_64-packages: | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- uses: ./.github/actions/build_conda | |
with: | |
label: main | |
windows-x86_64-packages: | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') | |
runs-on: windows-2019 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- uses: ./.github/actions/build_conda | |
with: | |
label: main | |
osx-arm64-packages: | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') | |
runs-on: macos-14 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- uses: ./.github/actions/build_conda | |
with: | |
label: main | |
linux-arm64-packages: | |
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') | |
runs-on: 2-core-ubuntu-arm | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4.1.1 | |
with: | |
fetch-depth: 0 | |
fetch-tags: true | |
- uses: ./.github/actions/build_conda | |
with: | |
label: main |