Lines Matching +full:runs +full:- +full:on
2 on:
4 branches-ignore:
5 - 'iar/**'
14 # cannot specify filter for pull_request in on: above, so do it here
16 runs-on: [self-hosted, Linux, X64]
19 - name: Clean workspace
22 rm -rf "${{ github.workspace }}"
23 mkdir -p "${{ github.workspace }}"
25 - name: Checkout repo
28 - name: Checkout submodules
29 run: git submodule update --init
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
36 - name: Configure CMake
40 working-directory: ${{github.workspace}}/build
41 # Note the current convention is to use the -S and -B options here to specify source
43 # The CMake binaries on the Github Actions machines are (as of this writing) 3.12
44 run: cmake $GITHUB_WORKSPACE -DCMAKE_BUILD_TYPE=$BUILD_TYPE -DPICO_SDK_TESTS_ENABLED=1
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)