36 lines
1.1 KiB
YAML
36 lines
1.1 KiB
YAML
##########################################################################
|
||
# Build KiCad on Windows and save the results
|
||
##########################################################################
|
||
win64_build:
|
||
stage: build
|
||
tags:
|
||
- kicad-windows-1809
|
||
extends: .only_code
|
||
interruptible: false
|
||
image: registry.gitlab.com/kicad/kicad-ci/source_containers/win64:msvc1809
|
||
only:
|
||
- branches@kicad/code/kicad
|
||
- tags@kicad/code/kicad
|
||
script:
|
||
- mkdir -p build/windows -Force
|
||
- cd build/windows
|
||
- cmake `
|
||
-G "Ninja" `
|
||
-DCMAKE_TOOLCHAIN_FILE=C:\build\vcpkg\scripts\buildsystems\vcpkg.cmake `
|
||
-DCMAKE_BUILD_TYPE=Debug `
|
||
-DKICAD_SCRIPTING_WXPYTHON=OFF `
|
||
-DKICAD_USE_OCC=ON `
|
||
-DKICAD_SPICE=ON `
|
||
-DKICAD_BUILD_PNS_DEBUG_TOOL=ON `
|
||
../../
|
||
- cmake --build . 2>&1 | tee compilation_log.txt
|
||
- cd ../../
|
||
artifacts:
|
||
# Only save the artifacts that are needed for running the tests in the next stage
|
||
# and the compilation log. The entire build directory is too large to save as an
|
||
# artifact.
|
||
expire_in: 2 hrs
|
||
when: always
|
||
paths:
|
||
- build/windows/compilation_log.txt
|