Nightly #826
This file contains hidden or 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: Nightly | |
| on: | |
| # The Faiss OSS autofix sidecar pushes generated fixes to short-lived | |
| # validation branches and then dispatches this workflow on that branch. The | |
| # scheduled trigger alone only tests the default branch, so it cannot validate | |
| # a candidate fix before the sidecar asks a human to review it. | |
| workflow_dispatch: | |
| 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-13-2-nightly: | |
| name: Linux x86_64 GPU nightlies (CUDA 13.2) | |
| runs-on: 4-core-ubuntu-gpu-t4 | |
| env: | |
| CUDA_ARCHS: "75-real;80;86-real;90;100;120" | |
| 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: "13.2" | |
| linux-x86_64-GPU-CUVS-CUDA13-2-0-nightly: | |
| name: Linux x86_64 GPU w/ cuVS nightlies (CUDA 13.2) | |
| runs-on: 4-core-ubuntu-gpu-t4 | |
| env: | |
| CUDA_ARCHS: "75-real;80;90;100;120" | |
| 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: "13.2" | |
| windows-x86_64-nightly: | |
| name: Windows x86_64 nightlies | |
| runs-on: windows-2022 | |
| 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 }} |