Skip to content

Commit 7e72195

Browse files
committed
Switch static build to also use conda since wheel container overhead is drowning out conda overhead here
1 parent b09b09c commit 7e72195

File tree

4 files changed

+24
-9
lines changed

4 files changed

+24
-9
lines changed

.github/workflows/build.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,7 @@ jobs:
7272
branch: ${{ inputs.branch }}
7373
sha: ${{ inputs.sha }}
7474
date: ${{ inputs.date }}
75-
container_image: "rapidsai/ci-wheel:latest"
75+
container_image: "rapidsai/ci-conda:latest"
7676
run_script: "ci/build_static.sh"
7777
dynamic-build:
7878
secrets: inherit

.github/workflows/pr.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ jobs:
4545
uses: rapidsai/shared-workflows/.github/workflows/[email protected]
4646
with:
4747
build_type: pull-request
48-
container_image: "rapidsai/ci-wheel:latest"
48+
container_image: "rapidsai/ci-conda:latest"
4949
run_script: "ci/build_static.sh"
5050
dynamic-build:
5151
needs: style

ci/build_static.sh

+9-3
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,17 @@
33

44
set -euo pipefail
55

6+
. /opt/conda/etc/profile.d/conda.sh
7+
8+
export CMAKE_GENERATOR=Ninja
9+
610
rapids-logger "Static cpp build"
711

8-
# Make sure we have an updated CMake
9-
python -m pip install -U cmake
10-
pyenv rehash
12+
ENV_YAML_DIR="$(mktemp -d)"
13+
ENV_FILE="${ENV_YAML_DIR}/env.yaml"
14+
rapids-dependency-file-generator --file-key test_static_library --output conda --matrix "" | tee "${ENV_FILE}"
15+
16+
rapids-mamba-retry env create --yes -f "${ENV_FILE}" -n test
1117

1218
cmake -S . -B build -DBUILD_SHARED_LIBS=OFF -DBUILD_TESTS=ON
1319
cmake --build build

dependencies.yaml

+13-4
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,12 @@ files:
1414
test_dynamic_linking:
1515
output: none
1616
includes:
17-
- test_dynamic_linking
17+
- build_common
18+
- spdlog_deps
19+
test_static_library:
20+
output: none
21+
includes:
22+
- build_common
1823
channels:
1924
- conda-forge
2025
- nodefaults
@@ -40,12 +45,16 @@ dependencies:
4045
- output_types: [requirements, pyproject]
4146
packages:
4247
- scikit-build-core[pyproject]>=0.10.0
43-
test_dynamic_linking:
48+
build_common:
4449
common:
4550
- output_types: conda
4651
packages:
47-
- spdlog==1.14.1
48-
- fmt==11.0.2
4952
- cmake>=3.30.4
5053
- ninja
5154
- cxx-compiler
55+
spdlog_deps:
56+
common:
57+
- output_types: conda
58+
packages:
59+
- spdlog==1.14.1
60+
- fmt==11.0.2

0 commit comments

Comments
 (0)