Home
last modified time | relevance | path

Searched full:build_type (Results 1 – 25 of 152) sorted by relevance

1234567

/third_party/benchmark/.github/workflows/
Dbuild-and-test.yml13 name: ${{ matrix.os }}.${{ matrix.build_type }}.${{ matrix.compiler }}
19 build_type: ['Release', 'Debug']
24 build_type: 'Release'
27 build_type: 'Debug'
42 -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
47 run: cmake --build . --config ${{ matrix.build_type }}
52 run: ctest -C ${{ matrix.build_type }} -VV
55 name: ubuntu-16.04.${{ matrix.build_type }}.${{ matrix.compiler }}
60 build_type: ['Release', 'Debug']
82 -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
[all …]
Dbuild-and-test-perfcounters.yml12 name: ${{ matrix.os }}.${{ matrix.build_type }}
18 build_type: ['Release', 'Debug']
40 -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
45 run: cmake --build . --config ${{ matrix.build_type }}
53 # run: ctest -C ${{ matrix.build_type }} --rerun-failed --output-on-failure
56 name: ubuntu-16.04.${{ matrix.build_type }}
61 build_type: ['Release', 'Debug']
84 -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
89 run: cmake --build . --config ${{ matrix.build_type }}
97 # run: ctest -C ${{ matrix.build_type }} --rerun-failed --output-on-failure
Dsanitizer.yml12 name: ${{ matrix.sanitizer }}.${{ matrix.build_type }}.${{ matrix.compiler }}
17 build_type: ['Debug', 'RelWithDebInfo']
82 -DCMAKE_BUILD_TYPE=${{ matrix.build_type }}
87 run: cmake --build . --config ${{ matrix.build_type }}
92 run: ctest -C ${{ matrix.build_type }} -VV
/third_party/skia/third_party/externals/swiftshader/tests/kokoro/gcp_windows/
Dcontinuous.bat29 cmake --build . --config %BUILD_TYPE% || goto :error
35 build\%BUILD_TYPE%\ReactorUnitTests.exe || goto :error
36 build\%BUILD_TYPE%\gles-unittests.exe || goto :error
37 build\%BUILD_TYPE%\system-unittests.exe || goto :error
38 build\%BUILD_TYPE%\vk-unittests.exe || goto :error
43 cmake --build . --config %BUILD_TYPE% --target ReactorUnitTests || goto :error
44 %BUILD_TYPE%\ReactorUnitTests.exe --gtest_filter=ReactorUnitTests.Print* || goto :error
50 cmake --build . --config %BUILD_TYPE% --target ReactorUnitTests || goto :error
51 %BUILD_TYPE%\ReactorUnitTests.exe --gtest_filter=ReactorUnitTests.EmitAsm || goto :error
57 cmake --build . --config %BUILD_TYPE% --target ReactorUnitTests || goto :error
[all …]
/third_party/benchmark/
D.travis.yml12 env: COMPILER=g++ C_COMPILER=gcc BUILD_TYPE=Coverage
22 - BUILD_TYPE=Debug
34 - BUILD_TYPE=Release
40 - COMPILER=g++-6 C_COMPILER=gcc-6 BUILD_TYPE=Debug
52 - COMPILER=clang++-3.8 C_COMPILER=clang-3.8 BUILD_TYPE=Debug
63 - COMPILER=clang++-3.8 C_COMPILER=clang-3.8 BUILD_TYPE=Release
77 - COMPILER=clang++-3.8 C_COMPILER=clang-3.8 BUILD_TYPE=Debug
93 - COMPILER=clang++-3.8 C_COMPILER=clang-3.8 BUILD_TYPE=Release
107 - COMPILER=clang++-3.8 C_COMPILER=clang-3.8 BUILD_TYPE=Debug
122 - COMPILER=clang++-3.8 C_COMPILER=clang-3.8 BUILD_TYPE=Debug
[all …]
/third_party/elfio/.github/workflows/
Dc-cpp.yml10 BUILD_TYPE: Release
19 build_type: [Release]
26 …run: cmake -B build -DCMAKE_BUILD_TYPE=${{ matrix.build_type }} -DELFIO_BUILD_EXAMPLES=YES -DELFIO…
28 run: cmake --build build --config ${{ matrix.build_type }}
32 ctest -C ${{ matrix.build_type }}
/third_party/glslang/
DChooseMSVCCRT.cmake96 foreach(build_type ${CMAKE_CONFIGURATION_TYPES} ${CMAKE_BUILD_TYPE})
97 string(TOUPPER "${build_type}" build)
104 CACHE STRING "Specify VC++ CRT to use for ${build_type} configurations."
109 endforeach(build_type)
111 foreach(build_type ${CMAKE_CONFIGURATION_TYPES} ${CMAKE_BUILD_TYPE})
112 string(TOUPPER "${build_type}" build)
122 message(STATUS "Using ${build_type} VC++ CRT: ${LLVM_USE_CRT_${build}}")
127 endforeach(build_type)
/third_party/node/deps/v8/tools/gcmole/
Dbootstrap.sh38 BUILD_TYPE="Release"
39 # BUILD_TYPE="Debug"
104 -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DLLVM_ENABLE_PROJECTS=clang \
108 if [[ "${BUILD_TYPE}" = "Release" ]]; then
123 BUILD_ROOT="${BUILD_DIR}" $BUILD_TYPE
/third_party/vk-gl-cts/external/amber/src/tools/
Dbuild-amber-sample.sh57 BUILD_TYPE=Release
70 mkdir -p $BUILD_DIR/gen $BUILD_DIR/output/lib/$ABI $BUILD_DIR/$BUILD_TYPE
72 pushd $BUILD_DIR/$BUILD_TYPE
77 -DCMAKE_BUILD_TYPE=$BUILD_TYPE \
/third_party/vk-gl-cts/external/amber/src/kokoro/scripts/linux/
Dbuild_dawn-docker.sh37 BUILD_TYPE="Debug"
40 BUILD_TYPE="RelWithDebInfo"
78 -DCMAKE_BUILD_TYPE=$BUILD_TYPE\
Dbuild-docker.sh37 BUILD_TYPE="Debug"
40 BUILD_TYPE="RelWithDebInfo"
63 cmake -GNinja -DCMAKE_BUILD_TYPE=$BUILD_TYPE \
/third_party/skia/experimental/skottiekit/
Dcompile.sh35 BUILD_TYPE="full"
55 BUILD_TYPE="minimal"
70 echo "Building a *${BUILD_TYPE}* Debug build"
76 echo "Building a *${BUILD_TYPE}* build for profiling"
/third_party/jerryscript/tools/
Djs2c.py59 def js_to_native_code(path, name, build_type): argument
63 if build_type != 'debug':
112 gen_output.append(js_to_native_code(path, name, script_args.build_type))
/third_party/skia/third_party/externals/swiftshader/third_party/llvm-10.0/configs/common/include/llvm/IR/
Dcmake_install.cmake11 if(BUILD_TYPE)
13 CMAKE_INSTALL_CONFIG_NAME "${BUILD_TYPE}")
/third_party/skia/third_party/externals/swiftshader/tests/kokoro/macos/
Dcontinuous.sh24 if [[ "${BUILD_TYPE}" == "Debug" ]]; then
30 "-DCMAKE_BUILD_TYPE=${BUILD_TYPE}" \
/third_party/spirv-tools/kokoro/scripts/windows/
Dbuild.bat21 set BUILD_TYPE=%1 variable
57 …TALL_PREFIX=%KOKORO_ARTIFACTS_DIR%\install -GNinja -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -DRE2_BUILD_TES…
83 ctest -C %BUILD_TYPE% --output-on-failure --timeout 300
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/kokoro/scripts/windows/
Dbuild.bat21 set BUILD_TYPE=%1 variable
60 …TALL_PREFIX=%KOKORO_ARTIFACTS_DIR%\install -GNinja -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -DRE2_BUILD_TES…
81 ctest -C %BUILD_TYPE% --output-on-failure --timeout 300
/third_party/skia/third_party/externals/tint/kokoro/windows/
Dbuild.bat117 cmake --build . --config %BUILD_TYPE% || goto :error
122 %BUILD_TYPE%\tint_unittests.exe || goto :error
130 git bash -- ./test/test-all.sh ../tint-build/%BUILD_TYPE%/tint.exe --verbose
/third_party/skia/third_party/externals/spirv-tools/kokoro/scripts/windows/
Dbuild.bat21 set BUILD_TYPE=%1 variable
60 …TALL_PREFIX=%KOKORO_ARTIFACTS_DIR%\install -GNinja -DCMAKE_BUILD_TYPE=%BUILD_TYPE% -DRE2_BUILD_TES…
81 ctest -C %BUILD_TYPE% --output-on-failure --timeout 300
/third_party/spirv-tools/kokoro/scripts/macos/
Dbuild.sh25 BUILD_TYPE=$1
51 -DCMAKE_BUILD_TYPE=$BUILD_TYPE \
/third_party/skia/third_party/externals/tint/kokoro/linux/
Dbuild.sh42 --env BUILD_TYPE=$BUILD_TYPE \
/third_party/vk-gl-cts/external/amber/src/kokoro/scripts/macos/
Dbuild.sh21 BUILD_TYPE=$1
48 cmake -GNinja -DCMAKE_BUILD_TYPE=$BUILD_TYPE $CMAKE_C_CXX_COMPILER \
/third_party/skia/third_party/externals/spirv-tools/kokoro/scripts/linux/
Dbuild-docker.sh62 BUILD_TYPE="Debug"
64 BUILD_TYPE="RelWithDebInfo"
99 …CMAKE_INSTALL_PREFIX=$KOKORO_ARTIFACTS_DIR/install -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DRE2_BUILD_TEST…
/third_party/spirv-tools/kokoro/scripts/linux/
Dbuild-docker.sh57 BUILD_TYPE="Debug"
59 BUILD_TYPE="RelWithDebInfo"
94 …CMAKE_INSTALL_PREFIX=$KOKORO_ARTIFACTS_DIR/install -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DRE2_BUILD_TEST…
/third_party/skia/third_party/externals/swiftshader/third_party/SPIRV-Tools/kokoro/scripts/linux/
Dbuild-docker.sh62 BUILD_TYPE="Debug"
64 BUILD_TYPE="RelWithDebInfo"
99 …CMAKE_INSTALL_PREFIX=$KOKORO_ARTIFACTS_DIR/install -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DRE2_BUILD_TEST…

1234567