File tree 4 files changed +24
-9
lines changed
4 files changed +24
-9
lines changed Original file line number Diff line number Diff line change 72
72
branch : ${{ inputs.branch }}
73
73
sha : ${{ inputs.sha }}
74
74
date : ${{ inputs.date }}
75
- container_image : " rapidsai/ci-wheel :latest"
75
+ container_image : " rapidsai/ci-conda :latest"
76
76
run_script : " ci/build_static.sh"
77
77
dynamic-build :
78
78
secrets : inherit
Original file line number Diff line number Diff line change 45
45
uses :
rapidsai/shared-workflows/.github/workflows/[email protected]
46
46
with :
47
47
build_type : pull-request
48
- container_image : " rapidsai/ci-wheel :latest"
48
+ container_image : " rapidsai/ci-conda :latest"
49
49
run_script : " ci/build_static.sh"
50
50
dynamic-build :
51
51
needs : style
Original file line number Diff line number Diff line change 3
3
4
4
set -euo pipefail
5
5
6
+ . /opt/conda/etc/profile.d/conda.sh
7
+
8
+ export CMAKE_GENERATOR=Ninja
9
+
6
10
rapids-logger " Static cpp build"
7
11
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
11
17
12
18
cmake -S . -B build -DBUILD_SHARED_LIBS=OFF -DBUILD_TESTS=ON
13
19
cmake --build build
Original file line number Diff line number Diff line change @@ -14,7 +14,12 @@ files:
14
14
test_dynamic_linking :
15
15
output : none
16
16
includes :
17
- - test_dynamic_linking
17
+ - build_common
18
+ - spdlog_deps
19
+ test_static_library :
20
+ output : none
21
+ includes :
22
+ - build_common
18
23
channels :
19
24
- conda-forge
20
25
- nodefaults
@@ -40,12 +45,16 @@ dependencies:
40
45
- output_types : [requirements, pyproject]
41
46
packages :
42
47
- scikit-build-core[pyproject]>=0.10.0
43
- test_dynamic_linking :
48
+ build_common :
44
49
common :
45
50
- output_types : conda
46
51
packages :
47
- - spdlog==1.14.1
48
- - fmt==11.0.2
49
52
- cmake>=3.30.4
50
53
- ninja
51
54
- cxx-compiler
55
+ spdlog_deps :
56
+ common :
57
+ - output_types : conda
58
+ packages :
59
+ - spdlog==1.14.1
60
+ - fmt==11.0.2
You can’t perform that action at this time.
0 commit comments