build_dummy.yml 854 B

12345678910111213141516171819202122232425262728293031323334
  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. concurrency:
  17. group: ${{ github.workflow }}-${{ github.ref }}
  18. cancel-in-progress: ${{ github.event_name == 'pull_request' }}
  19. jobs:
  20. old-cmake:
  21. name: Test oldest supported cmake
  22. runs-on: ubuntu-latest
  23. timeout-minutes: 15
  24. steps:
  25. - run: echo "success"
  26. use-existing-src:
  27. name: Test USE_EXISTING_SRC_DIR=ON builds with no network access
  28. runs-on: ubuntu-latest
  29. steps:
  30. - run: echo "success"