forked from facebookresearch/faiss
-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable both RAFT package builds and CUDA 12.1.1 GPU package build (fa…
…cebookresearch#3441) Summary: Pull Request resolved: facebookresearch#3441 Migration to GitHub Actions Reviewed By: junjieqi Differential Revision: D57372738 fbshipit-source-id: 745b3c3f43c49045f8f5035e2af302ffa30d7755
- Loading branch information
1 parent
825bd09
commit d556efa
Showing
1 changed file
with
50 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -116,6 +116,56 @@ jobs: | |
- uses: ./.github/actions/build_conda | ||
with: | ||
label: main | ||
linux-x86_64-GPU-RAFT-packages-CUDA11-8-0: | ||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') | ||
runs-on: 4-core-ubuntu-gpu-t4 | ||
env: | ||
CUDA_ARCHS: "70-real;72-real;75-real;80;86-real" | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
- uses: ./.github/actions/build_conda | ||
with: | ||
label: main | ||
raft: "ON" | ||
cuda: "11.8.0" | ||
compiler_version: "11.2" | ||
linux-x86_64-GPU-packages-CUDA-12-1-1: | ||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') | ||
runs-on: 4-core-ubuntu-gpu-t4 | ||
env: | ||
CUDA_ARCHS: "70-real;72-real;75-real;80;86-real" | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
- uses: ./.github/actions/build_conda | ||
with: | ||
label: main | ||
cuda: "12.1.1" | ||
compiler_version: "11.2" | ||
linux-x86_64-GPU-RAFT-packages-CUDA12-1-1: | ||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') | ||
runs-on: 4-core-ubuntu-gpu-t4 | ||
env: | ||
CUDA_ARCHS: "70-real;72-real;75-real;80;86-real" | ||
steps: | ||
- name: Checkout | ||
uses: actions/[email protected] | ||
with: | ||
fetch-depth: 0 | ||
fetch-tags: true | ||
- uses: ./.github/actions/build_conda | ||
with: | ||
label: main | ||
raft: "ON" | ||
cuda: "12.1.1" | ||
compiler_version: "11.2" | ||
windows-x86_64-packages: | ||
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/v') | ||
runs-on: windows-2019 | ||
|