build_dummy.yml (852B)
1 name: build_dummy 2 on: 3 pull_request: 4 branches: 5 - 'master' 6 - 'release-[0-9]+.[0-9]+' 7 # This needs to be an exact complement of `paths` in the build.yml workflow. 8 # This is required to bypass required checks since a required job is always 9 # needed to run. 10 paths-ignore: 11 - '**.cmake' 12 - '**/CMakeLists.txt' 13 - '**/CMakePresets.json' 14 - 'cmake.*/**' 15 - '.github/**' 16 17 concurrency: 18 group: ${{ github.workflow }}-${{ github.ref }} 19 cancel-in-progress: ${{ github.event_name == 'pull_request' }} 20 21 jobs: 22 # Test the minimum supported cmake. 23 old-cmake: 24 runs-on: ubuntu-latest 25 timeout-minutes: 15 26 steps: 27 - run: echo "success" 28 29 # Offline build (USE_EXISTING_SRC_DIR=ON with no network access) 30 use-existing-src: 31 runs-on: ubuntu-latest 32 steps: 33 - run: echo "success"