diff --git a/.dockerignore b/.dockerignore index f852e82..230e8a1 100644 --- a/.dockerignore +++ b/.dockerignore @@ -13,5 +13,4 @@ !LightGBM/python-package !LightGBM/src !LightGBM/swig -!LightGBM/windows !LightGBM/VERSION.txt diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 20a4fdf..2ad0a60 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -31,6 +31,9 @@ jobs: - name: Build cluster image run: | make cluster-image + - name: Build profiling image + run: | + make profiling-image all-tests-successful: if: always() runs-on: ubuntu-latest diff --git a/Dockerfile-cluster b/Dockerfile-cluster index 0a446cf..b3d9c91 100644 --- a/Dockerfile-cluster +++ b/Dockerfile-cluster @@ -3,7 +3,7 @@ ARG BASE_IMAGE=unset # hadolint ignore=DL3006 FROM ${BASE_IMAGE} -RUN --mount=type=bind,source=LightGBM,target=/tmp/LightGBM \ +RUN --mount=type=bind,source=LightGBM,target=/tmp/LightGBM,rw \ <