File tree Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Expand file tree Collapse file tree 3 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 13
13
! LightGBM /python-package
14
14
! LightGBM /src
15
15
! LightGBM /swig
16
- ! LightGBM /windows
17
16
! LightGBM /VERSION.txt
Original file line number Diff line number Diff line change 31
31
- name : Build cluster image
32
32
run : |
33
33
make cluster-image
34
+ - name : Build profiling image
35
+ run : |
36
+ make profiling-image
34
37
all-tests-successful :
35
38
if : always()
36
39
runs-on : ubuntu-latest
Original file line number Diff line number Diff line change @@ -3,12 +3,14 @@ ARG BASE_IMAGE=unset
3
3
# hadolint ignore=DL3006
4
4
FROM ${BASE_IMAGE}
5
5
6
- RUN pip install --no-cache-dir --prefer-binary \
7
- memray \
8
- pytest \
9
- pytest-memray \
10
- pytest-profiling \
11
- snakeviz
6
+ RUN <<<EOF
7
+ pip install --no-cache-dir --prefer-binary \
8
+ memray \
9
+ pytest \
10
+ pytest-memray \
11
+ pytest-profiling \
12
+ snakeviz
13
+ EOF
12
14
13
15
COPY bin/profile-examples.sh /usr/local/bin/profile-examples.sh
14
16
COPY bin/profile-example-memory-usage.sh /usr/local/bin/profile-example-memory-usage.sh
You can’t perform that action at this time.
0 commit comments