Skip to content

Commit 58af07a

Browse files
authored
Merge branch 'branch-24.08' into cuda-12.5.1
2 parents 1f8045f + bfc1356 commit 58af07a

File tree

4 files changed

+15
-8
lines changed

4 files changed

+15
-8
lines changed

.github/workflows/build-image.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -86,7 +86,7 @@ jobs:
8686
driver: docker
8787
endpoint: builders
8888
- name: Build base image
89-
uses: docker/build-push-action@v5
89+
uses: docker/build-push-action@v6
9090
with:
9191
context: context
9292
file: Dockerfile
@@ -102,7 +102,7 @@ jobs:
102102
RAPIDS_VER=${{ inputs.RAPIDS_VER }}
103103
tags: ${{ inputs.BASE_TAG }}-${{ matrix.ARCH }}
104104
- name: Build notebooks image
105-
uses: docker/build-push-action@v5
105+
uses: docker/build-push-action@v6
106106
with:
107107
context: context
108108
file: Dockerfile
@@ -118,7 +118,7 @@ jobs:
118118
RAPIDS_VER=${{ inputs.RAPIDS_VER }}
119119
tags: ${{ inputs.NOTEBOOKS_TAG }}-${{ matrix.ARCH }}
120120
- name: Build RAFT ANN Benchmarks GPU image
121-
uses: docker/build-push-action@v5
121+
uses: docker/build-push-action@v6
122122
with:
123123
context: context
124124
file: raft-ann-bench/gpu/Dockerfile
@@ -132,7 +132,7 @@ jobs:
132132
RAPIDS_VER=${{ inputs.RAPIDS_VER }}
133133
tags: ${{ inputs.RAFT_ANN_BENCH_TAG }}-${{ matrix.ARCH }}
134134
- name: Build RAFT ANN Benchmarks GPU with datasets image
135-
uses: docker/build-push-action@v5
135+
uses: docker/build-push-action@v6
136136
with:
137137
context: context
138138
file: raft-ann-bench/gpu/Dockerfile
@@ -146,8 +146,8 @@ jobs:
146146
RAPIDS_VER=${{ inputs.RAPIDS_VER }}
147147
tags: ${{ inputs.RAFT_ANN_BENCH_DATASETS_TAG }}-${{ matrix.ARCH }}
148148
- name: Build RAFT ANN Benchmarks CPU image
149-
if: inputs.CUDA_VER == '12.5.0' # we don't need to build CPU packages for different CUDA versions.
150-
uses: docker/build-push-action@v5
149+
if: inputs.CUDA_VER == '12.5.1' # we don't need to build CPU packages for different CUDA versions.
150+
uses: docker/build-push-action@v6
151151
with:
152152
context: context
153153
file: raft-ann-bench/cpu/Dockerfile

.github/workflows/pr.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,12 @@ concurrency:
1010
cancel-in-progress: true
1111

1212
jobs:
13+
pr-builder:
14+
needs:
15+
- checks
16+
- docker
17+
secrets: inherit
18+
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
1319
checks:
1420
runs-on: ubuntu-latest
1521
steps:

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ EOF
3434

3535

3636
# Base image
37-
FROM rapidsai/miniforge-cuda:cuda${CUDA_VER}-base-${LINUX_VER}-py${PYTHON_VER} as base
37+
FROM rapidsai/miniforge-cuda:cuda${CUDA_VER}-base-${LINUX_VER}-py${PYTHON_VER} AS base
3838
ARG CUDA_VER
3939
ARG PYTHON_VER
4040

@@ -67,7 +67,7 @@ CMD ["ipython"]
6767

6868

6969
# Notebooks image
70-
FROM base as notebooks
70+
FROM base AS notebooks
7171

7272
ARG CUDA_VER
7373
ARG LINUX_DISTRO

context/test_notebooks.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -70,6 +70,7 @@ def test_notebook(notebook_file, executed_nb_file):
7070
warnings = []
7171
outputs = []
7272

73+
7374
# use nbconvert to run the notebook natively
7475
ep = ExecutePreprocessor(timeout=600, kernel_name="python3", allow_errors=True)
7576
task_init = timeit.default_timer()

0 commit comments

Comments
 (0)