Initial commit
This commit is contained in:
23
packages/leann-backend-hnsw/third_party/faiss/.github/workflows/autoclose.yml
vendored
Normal file
23
packages/leann-backend-hnsw/third_party/faiss/.github/workflows/autoclose.yml
vendored
Normal file
@@ -0,0 +1,23 @@
|
||||
name: Close Inactive Issues
|
||||
on:
|
||||
schedule:
|
||||
- cron: "30 1 * * *"
|
||||
|
||||
jobs:
|
||||
close-issues:
|
||||
runs-on: ubuntu-latest
|
||||
permissions:
|
||||
issues: write
|
||||
pull-requests: write
|
||||
steps:
|
||||
- uses: actions/stale@v5
|
||||
with:
|
||||
only-labels: autoclose
|
||||
days-before-issue-stale: 7
|
||||
days-before-issue-close: 7
|
||||
stale-issue-label: "stale"
|
||||
stale-issue-message: "This issue is stale because it has been open for 7 days with no activity."
|
||||
close-issue-message: "This issue was closed because it has been inactive for 7 days since being marked as stale."
|
||||
days-before-pr-stale: -1
|
||||
days-before-pr-close: -1
|
||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||
169
packages/leann-backend-hnsw/third_party/faiss/.github/workflows/build-pull-request.yml
vendored
Normal file
169
packages/leann-backend-hnsw/third_party/faiss/.github/workflows/build-pull-request.yml
vendored
Normal file
@@ -0,0 +1,169 @@
|
||||
on:
|
||||
workflow_call:
|
||||
env:
|
||||
OMP_NUM_THREADS: '10'
|
||||
MKL_THREADING_LAYER: GNU
|
||||
jobs:
|
||||
format:
|
||||
name: Format
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- 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:
|
||||
name: Linux x86_64 (cmake)
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Build and Test (cmake)
|
||||
uses: ./.github/actions/build_cmake
|
||||
linux-x86_64-AVX2-cmake:
|
||||
name: Linux x86_64 AVX2 (cmake)
|
||||
needs: linux-x86_64-cmake
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Build and Test (cmake)
|
||||
uses: ./.github/actions/build_cmake
|
||||
with:
|
||||
opt_level: avx2
|
||||
linux-x86_64-AVX512-cmake:
|
||||
name: Linux x86_64 AVX512 (cmake)
|
||||
needs: linux-x86_64-cmake
|
||||
runs-on: faiss-aws-m7i.large
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Build and Test (cmake)
|
||||
uses: ./.github/actions/build_cmake
|
||||
with:
|
||||
opt_level: avx512
|
||||
linux-x86_64-AVX512_SPR-cmake:
|
||||
name: Linux x86_64 AVX512_SPR (cmake)
|
||||
needs: linux-x86_64-cmake
|
||||
runs-on: faiss-aws-m7i.large
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Build and Test (cmake)
|
||||
uses: ./.github/actions/build_cmake
|
||||
with:
|
||||
opt_level: avx512_spr
|
||||
linux-x86_64-GPU-cmake:
|
||||
name: Linux x86_64 GPU (cmake)
|
||||
needs: linux-x86_64-cmake
|
||||
runs-on: 4-core-ubuntu-gpu-t4
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Build and Test (cmake)
|
||||
uses: ./.github/actions/build_cmake
|
||||
with:
|
||||
gpu: ON
|
||||
linux-x86_64-GPU-w-CUVS-cmake:
|
||||
name: Linux x86_64 GPU w/ cuVS (cmake)
|
||||
needs: linux-x86_64-cmake
|
||||
runs-on: 4-core-ubuntu-gpu-t4
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Build and Test (cmake)
|
||||
uses: ./.github/actions/build_cmake
|
||||
with:
|
||||
gpu: ON
|
||||
cuvs: ON
|
||||
linux-x86_64-GPU-w-ROCm-cmake:
|
||||
name: Linux x86_64 GPU w/ ROCm (cmake)
|
||||
needs: linux-x86_64-cmake
|
||||
runs-on: faiss-amd-MI200
|
||||
container:
|
||||
image: ubuntu:22.04
|
||||
options: --device=/dev/kfd --device=/dev/dri --ipc=host --shm-size 16G --group-add video --cap-add=SYS_PTRACE --cap-add=SYS_ADMIN
|
||||
steps:
|
||||
- name: Container setup
|
||||
run: |
|
||||
if [ -f /.dockerenv ]; then
|
||||
apt-get update && apt-get install -y sudo && apt-get install -y git
|
||||
git config --global --add safe.directory '*'
|
||||
else
|
||||
echo 'Skipping. Current job is not running inside a container.'
|
||||
fi
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Build and Test (cmake)
|
||||
uses: ./.github/actions/build_cmake
|
||||
with:
|
||||
gpu: ON
|
||||
rocm: ON
|
||||
linux-arm64-SVE-cmake:
|
||||
name: Linux arm64 SVE (cmake)
|
||||
needs: linux-x86_64-cmake
|
||||
runs-on: faiss-aws-r8g.large
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
- name: Build and Test (cmake)
|
||||
uses: ./.github/actions/build_cmake
|
||||
with:
|
||||
opt_level: sve
|
||||
env:
|
||||
# Context: https://github.com/facebookresearch/faiss/wiki/Troubleshooting#surprising-faiss-openmp-and-openblas-interaction
|
||||
OPENBLAS_NUM_THREADS: '1'
|
||||
linux-x86_64-conda:
|
||||
name: Linux x86_64 (conda)
|
||||
needs: linux-x86_64-cmake
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
fetch-tags: true
|
||||
- name: Build and Package (conda)
|
||||
uses: ./.github/actions/build_conda
|
||||
windows-x86_64-conda:
|
||||
name: Windows x86_64 (conda)
|
||||
needs: linux-x86_64-cmake
|
||||
runs-on: windows-2019
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
fetch-tags: true
|
||||
- name: Build and Package (conda)
|
||||
uses: ./.github/actions/build_conda
|
||||
linux-arm64-conda:
|
||||
name: Linux arm64 (conda)
|
||||
needs: linux-x86_64-cmake
|
||||
runs-on: 2-core-ubuntu-arm
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
fetch-tags: true
|
||||
- name: Build and Package (conda)
|
||||
uses: ./.github/actions/build_conda
|
||||
144
packages/leann-backend-hnsw/third_party/faiss/.github/workflows/build-release.yml
vendored
Normal file
144
packages/leann-backend-hnsw/third_party/faiss/.github/workflows/build-release.yml
vendored
Normal file
@@ -0,0 +1,144 @@
|
||||
on:
|
||||
workflow_call:
|
||||
secrets:
|
||||
ANACONDA_API_TOKEN:
|
||||
required: true
|
||||
env:
|
||||
OMP_NUM_THREADS: '10'
|
||||
MKL_THREADING_LAYER: GNU
|
||||
jobs:
|
||||
linux-x86_64-packages:
|
||||
name: Linux x86_64 packages
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
fetch-tags: true
|
||||
- name: Build and Package (conda)
|
||||
uses: ./.github/actions/build_conda
|
||||
env:
|
||||
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
|
||||
with:
|
||||
label: main
|
||||
linux-x86_64-GPU-packages-CUDA-11-4-4:
|
||||
name: Linux x86_64 GPU packages (CUDA 11.4.4)
|
||||
runs-on: 4-core-ubuntu-gpu-t4
|
||||
env:
|
||||
CUDA_ARCHS: "60-real;61-real;62-real;70-real;72-real;75-real;80;86-real"
|
||||
FAISS_FLATTEN_CONDA_INCLUDES: "1"
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
fetch-tags: true
|
||||
- name: Build and Package (conda)
|
||||
uses: ./.github/actions/build_conda
|
||||
env:
|
||||
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
|
||||
with:
|
||||
label: main
|
||||
cuda: "11.4.4"
|
||||
linux-x86_64-GPU-CUVS-packages-CUDA11-8-0:
|
||||
name: Linux x86_64 GPU w/ cuVS packages (CUDA 11.8.0)
|
||||
runs-on: 4-core-ubuntu-gpu-t4
|
||||
env:
|
||||
CUDA_ARCHS: "70-real;72-real;75-real;80;86-real"
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
fetch-tags: true
|
||||
- name: Build and Package (conda)
|
||||
uses: ./.github/actions/build_conda
|
||||
env:
|
||||
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
|
||||
with:
|
||||
label: main
|
||||
cuvs: "ON"
|
||||
cuda: "11.8.0"
|
||||
linux-x86_64-GPU-packages-CUDA-12-1-1:
|
||||
name: Linux x86_64 GPU packages (CUDA 12.1.1)
|
||||
runs-on: 4-core-ubuntu-gpu-t4
|
||||
env:
|
||||
CUDA_ARCHS: "70-real;72-real;75-real;80;86-real"
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
fetch-tags: true
|
||||
- name: Build and Package (conda)
|
||||
uses: ./.github/actions/build_conda
|
||||
env:
|
||||
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
|
||||
with:
|
||||
label: main
|
||||
cuda: "12.1.1"
|
||||
linux-x86_64-GPU-CUVS-packages-CUDA12-4-0:
|
||||
name: Linux x86_64 GPU w/ cuVS packages (CUDA 12.4.0)
|
||||
runs-on: 4-core-ubuntu-gpu-t4
|
||||
env:
|
||||
CUDA_ARCHS: "70-real;72-real;75-real;80;86-real"
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
fetch-tags: true
|
||||
- name: Build and Package (conda)
|
||||
uses: ./.github/actions/build_conda
|
||||
env:
|
||||
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
|
||||
with:
|
||||
label: main
|
||||
cuvs: "ON"
|
||||
cuda: "12.4.0"
|
||||
windows-x86_64-packages:
|
||||
name: Windows x86_64 packages
|
||||
runs-on: windows-2019
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
fetch-tags: true
|
||||
- name: Build and Package (conda)
|
||||
uses: ./.github/actions/build_conda
|
||||
env:
|
||||
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
|
||||
with:
|
||||
label: main
|
||||
osx-arm64-packages:
|
||||
name: OSX arm64 packages
|
||||
runs-on: macos-14
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
fetch-tags: true
|
||||
- name: Build and Package (conda)
|
||||
uses: ./.github/actions/build_conda
|
||||
env:
|
||||
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
|
||||
with:
|
||||
label: main
|
||||
linux-arm64-packages:
|
||||
name: Linux arm64 packages
|
||||
runs-on: 2-core-ubuntu-arm
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
fetch-tags: true
|
||||
- name: Build and Package (conda)
|
||||
uses: ./.github/actions/build_conda
|
||||
env:
|
||||
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
|
||||
with:
|
||||
label: main
|
||||
17
packages/leann-backend-hnsw/third_party/faiss/.github/workflows/build.yml
vendored
Normal file
17
packages/leann-backend-hnsw/third_party/faiss/.github/workflows/build.yml
vendored
Normal file
@@ -0,0 +1,17 @@
|
||||
name: Build
|
||||
on:
|
||||
workflow_dispatch:
|
||||
pull_request:
|
||||
branches:
|
||||
- main
|
||||
push:
|
||||
tags:
|
||||
- 'v*'
|
||||
jobs:
|
||||
build-pull-request:
|
||||
uses: ./.github/workflows/build-pull-request.yml
|
||||
build-release:
|
||||
uses: ./.github/workflows/build-release.yml
|
||||
secrets:
|
||||
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
|
||||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v')
|
||||
148
packages/leann-backend-hnsw/third_party/faiss/.github/workflows/nightly.yml
vendored
Normal file
148
packages/leann-backend-hnsw/third_party/faiss/.github/workflows/nightly.yml
vendored
Normal file
@@ -0,0 +1,148 @@
|
||||
name: Nightly
|
||||
on:
|
||||
schedule:
|
||||
- cron: '10 6 * * *'
|
||||
env:
|
||||
OMP_NUM_THREADS: '10'
|
||||
MKL_THREADING_LAYER: GNU
|
||||
jobs:
|
||||
linux-x86_64-nightly:
|
||||
name: Linux x86_64 nightlies
|
||||
runs-on: 4-core-ubuntu
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
fetch-tags: true
|
||||
- uses: ./.github/actions/build_conda
|
||||
env:
|
||||
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
|
||||
with:
|
||||
label: nightly
|
||||
linux-x86_64-GPU-CUDA-11-4-4-nightly:
|
||||
name: Linux x86_64 GPU nightlies (CUDA 11.4.4)
|
||||
runs-on: 4-core-ubuntu-gpu-t4
|
||||
env:
|
||||
CUDA_ARCHS: "60-real;61-real;62-real;70-real;72-real;75-real;80;86-real"
|
||||
FAISS_FLATTEN_CONDA_INCLUDES: "1"
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
fetch-tags: true
|
||||
- uses: ./.github/actions/build_conda
|
||||
env:
|
||||
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
|
||||
with:
|
||||
label: nightly
|
||||
cuda: "11.4.4"
|
||||
linux-x86_64-GPU-CUVS-CUDA11-8-0-nightly:
|
||||
name: Linux x86_64 GPU w/ cuVS nightlies (CUDA 11.8.0)
|
||||
runs-on: 4-core-ubuntu-gpu-t4
|
||||
env:
|
||||
CUDA_ARCHS: "70-real;72-real;75-real;80;86-real"
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
fetch-tags: true
|
||||
- uses: ./.github/actions/build_conda
|
||||
env:
|
||||
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
|
||||
with:
|
||||
label: nightly
|
||||
cuvs: "ON"
|
||||
cuda: "11.8.0"
|
||||
linux-x86_64-GPU-CUDA-12-1-1-nightly:
|
||||
name: Linux x86_64 GPU nightlies (CUDA 12.1.1)
|
||||
runs-on: 4-core-ubuntu-gpu-t4
|
||||
env:
|
||||
CUDA_ARCHS: "70-real;72-real;75-real;80;86-real"
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
fetch-tags: true
|
||||
- uses: ./.github/actions/build_conda
|
||||
env:
|
||||
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
|
||||
with:
|
||||
label: nightly
|
||||
cuda: "12.1.1"
|
||||
linux-x86_64-GPU-CUVS-CUDA12-4-0-nightly:
|
||||
name: Linux x86_64 GPU w/ cuVS nightlies (CUDA 12.4.0)
|
||||
runs-on: 4-core-ubuntu-gpu-t4
|
||||
env:
|
||||
CUDA_ARCHS: "70-real;72-real;75-real;80;86-real"
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
fetch-tags: true
|
||||
- uses: ./.github/actions/build_conda
|
||||
env:
|
||||
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
|
||||
with:
|
||||
label: nightly
|
||||
cuvs: "ON"
|
||||
cuda: "12.4.0"
|
||||
windows-x86_64-nightly:
|
||||
name: Windows x86_64 nightlies
|
||||
runs-on: windows-2019
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
fetch-tags: true
|
||||
- uses: ./.github/actions/build_conda
|
||||
env:
|
||||
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
|
||||
with:
|
||||
label: nightly
|
||||
osx-arm64-nightly:
|
||||
name: OSX arm64 nightlies
|
||||
runs-on: macos-14
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
fetch-tags: true
|
||||
- uses: ./.github/actions/build_conda
|
||||
env:
|
||||
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
|
||||
with:
|
||||
label: nightly
|
||||
linux-arm64-nightly:
|
||||
name: Linux arm64 nightlies
|
||||
runs-on: 2-core-ubuntu-arm
|
||||
steps:
|
||||
- name: Checkout
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
fetch-depth: 0
|
||||
fetch-tags: true
|
||||
- uses: ./.github/actions/build_conda
|
||||
env:
|
||||
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
|
||||
with:
|
||||
label: nightly
|
||||
auto-retry:
|
||||
name: Auto retry on failure
|
||||
if: fromJSON(github.run_attempt) < 2
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Start rerun workflow
|
||||
env:
|
||||
GH_REPO: ${{ github.repository }}
|
||||
GH_TOKEN: ${{ github.token }}
|
||||
GH_DEBUG: api
|
||||
run: |
|
||||
gh workflow run retry_build.yml \
|
||||
-F run_id=${{ github.run_id }}
|
||||
44
packages/leann-backend-hnsw/third_party/faiss/.github/workflows/publish-docs.yml
vendored
Normal file
44
packages/leann-backend-hnsw/third_party/faiss/.github/workflows/publish-docs.yml
vendored
Normal file
@@ -0,0 +1,44 @@
|
||||
name: Publish Docs
|
||||
on:
|
||||
page_build:
|
||||
branches:
|
||||
- gh-pages
|
||||
paths-ignore:
|
||||
- 'docs/**'
|
||||
workflow_run:
|
||||
workflows: [update-doxygen]
|
||||
types:
|
||||
- completed
|
||||
jobs:
|
||||
build_and_publish:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: 3.8
|
||||
- name: Checkout gh-pages
|
||||
run: |
|
||||
git fetch origin gh-pages
|
||||
git checkout gh-pages
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
python -m pip install --upgrade pip
|
||||
pip install -r requirements.txt
|
||||
- name: Generate html
|
||||
run: |
|
||||
make html
|
||||
git rm -rf docs
|
||||
mv _build/html docs
|
||||
touch docs/.nojekyll
|
||||
- name: Push changes
|
||||
run: |
|
||||
git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
||||
git config --global user.name "$GITHUB_ACTOR"
|
||||
git add docs
|
||||
if [ -n "$(git status --porcelain)" ]
|
||||
then
|
||||
git commit docs -m "Sphinx rebuild ($(git rev-parse --short gh-pages))."
|
||||
git push origin gh-pages
|
||||
fi
|
||||
33
packages/leann-backend-hnsw/third_party/faiss/.github/workflows/retry_build.yml
vendored
Normal file
33
packages/leann-backend-hnsw/third_party/faiss/.github/workflows/retry_build.yml
vendored
Normal file
@@ -0,0 +1,33 @@
|
||||
name: Retry Build
|
||||
on:
|
||||
workflow_dispatch:
|
||||
inputs:
|
||||
run_id:
|
||||
required: true
|
||||
jobs:
|
||||
rerun-on-failure:
|
||||
permissions: write-all
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: rerun ${{ inputs.run_id }}
|
||||
env:
|
||||
GH_REPO: ${{ github.repository }}
|
||||
GH_TOKEN: ${{ github.token }}
|
||||
GH_DEBUG: api
|
||||
run: |
|
||||
# status can be one of "queued", "in_progress", "completed", "waiting", "requested", "pending"
|
||||
# https://docs.github.com/en/rest/checks/runs
|
||||
# while not completed, sleep for 10 minutes
|
||||
while gh run view ${{ inputs.run_id }} --json status | grep -v completed
|
||||
do
|
||||
echo Workflow in progress - sleeping for 10 minutes then checking again
|
||||
sleep 10m
|
||||
done
|
||||
|
||||
# Only retry if there are failed jobs
|
||||
if gh run view ${{ inputs.run_id }} --exit-status; then
|
||||
echo Workflow succeeded - no retry necessary.
|
||||
else
|
||||
echo Workflow failed - initiating retry.
|
||||
gh run rerun ${{ inputs.run_id }} --failed
|
||||
fi
|
||||
40
packages/leann-backend-hnsw/third_party/faiss/.github/workflows/update-doxygen.yml
vendored
Normal file
40
packages/leann-backend-hnsw/third_party/faiss/.github/workflows/update-doxygen.yml
vendored
Normal file
@@ -0,0 +1,40 @@
|
||||
name: Update Doxygen
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- main
|
||||
paths:
|
||||
- 'faiss/**'
|
||||
jobs:
|
||||
doxygen:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
- name: Set up Python
|
||||
uses: actions/setup-python@v2
|
||||
with:
|
||||
python-version: 3.8
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt-get install -y doxygen
|
||||
python -m pip install --upgrade pip
|
||||
pip install breathe
|
||||
- name: Generate doxygen xml
|
||||
run: doxygen
|
||||
- name: Push changes
|
||||
run: |
|
||||
git config --global user.email "$GITHUB_ACTOR@users.noreply.github.com"
|
||||
git config --global user.name "$GITHUB_ACTOR"
|
||||
mkdir ./tmp
|
||||
mv xml ./tmp/xml
|
||||
git fetch origin gh-pages
|
||||
git checkout gh-pages
|
||||
git rm -rf xml cpp_api
|
||||
mv ./tmp/xml ./xml
|
||||
breathe-apidoc -o cpp_api xml
|
||||
git add xml cpp_api
|
||||
if [ -n "$(git status --porcelain)" ]
|
||||
then
|
||||
git commit -m "Update API docs ($(git rev-parse --short main))."
|
||||
git push origin gh-pages
|
||||
fi
|
||||
Reference in New Issue
Block a user