Lines Matching full:build
9 # Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
13 build:
31 - name: Create Build Environment
32 # Some projects don't allow in-source building, so create a separate build directory
34 run: cmake -E make_directory ${{github.workspace}}/build
40 working-directory: ${{github.workspace}}/build
42 # and build directories, but this is only available with CMake 3.13 and higher.
46 - name: Build
47 working-directory: ${{github.workspace}}/build
49 # Execute the build. You can specify a specific target with "--target <NAME>"
50 run: cmake --build . --config $BUILD_TYPE --parallel $(nproc)