blob: d5a036a79570b63e95938ebb727d5834b20f2807 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
# escape=`
# Distributed under the OSI-approved BSD 3-Clause License. See accompanying
# file Copyright.txt or https://cmake.org/licensing for details.
# Produce an image containing a portable CMake binary package for Windows.
# Build using the CMake source directory as the build context.
# The resulting image will have a 'c:\out' directory containing the package.
ARG FROM_IMAGE_NAME=kitware/cmake:build-win-x86-deps-2020-04-27
ARG FROM_IMAGE_DIGEST=@sha256:04e229c0c0ba2247855d0e8c0fb87c1686f983adbafa4ce413e61b3905edb76b
ARG FROM_IMAGE=$FROM_IMAGE_NAME$FROM_IMAGE_DIGEST
FROM $FROM_IMAGE as source
COPY . C:\cmake\src\cmake
FROM source as build
ARG ARCH="x86_64"
ARG TEST="true"
RUN \cmake\src\cmake\Utilities\Release\win\x86\build.bat %ARCH% %TEST%
# Package in a separate stage so the builder can optionally skip it.
FROM build as pack
ARG PACK="ZIP WIX"
RUN \cmake\src\cmake\Utilities\Release\win\x86\pack.bat %PACK%
|