Skip to content

Commit 2ce220e

Browse files
Fix CUDA 11.4.4 nightly in GitHub Actions
Summary: Previous diff (D57602154) fixed the CircleCI version and the PR build version of GHA but not the nightly one. Differential Revision: D57680576
1 parent f352168 commit 2ce220e

File tree

2 files changed

+19
-0
lines changed

2 files changed

+19
-0
lines changed

.github/workflows/build.yml

+18
Original file line numberDiff line numberDiff line change
@@ -219,3 +219,21 @@ jobs:
219219
- uses: ./.github/actions/build_conda
220220
with:
221221
label: main
222+
linux-x86_64-GPU-CUDA-11-4-4-nightly:
223+
name: Linux x86_64 GPU nightlies (CUDA 11.4.4)
224+
runs-on: 4-core-ubuntu-gpu-t4
225+
env:
226+
CUDA_ARCHS: "60-real;61-real;62-real;70-real;72-real;75-real;80;86-real"
227+
FAISS_FLATTEN_CONDA_INCLUDES: "1"
228+
steps:
229+
- name: Checkout
230+
uses: actions/checkout@v4
231+
with:
232+
fetch-depth: 0
233+
fetch-tags: true
234+
- uses: ./.github/actions/build_conda
235+
env:
236+
ANACONDA_API_TOKEN: ${{ secrets.ANACONDA_API_TOKEN }}
237+
with:
238+
cuda: "11.4.4"
239+
compiler_version: "11.2"

.github/workflows/nightly.yml

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ jobs:
2525
runs-on: 4-core-ubuntu-gpu-t4
2626
env:
2727
CUDA_ARCHS: "60-real;61-real;62-real;70-real;72-real;75-real;80;86-real"
28+
FAISS_FLATTEN_CONDA_INCLUDES: "1"
2829
steps:
2930
- name: Checkout
3031
uses: actions/checkout@v4

0 commit comments

Comments
 (0)