mirror of
https://github.com/neovim/neovim.git
synced 2026-01-03 09:56:25 +10:00
Close #36441 Close #36631 Close #36656 Co-authored-by: Maria José Solano <majosolano99@gmail.com> Co-authored-by: glepnir <glephunter@gmail.com> Co-authored-by: "Mike J. McGuirk" <mike.j.mcguirk@gmail.com>
34 lines
852 B
YAML
34 lines
852 B
YAML
name: build_dummy
|
|
on:
|
|
pull_request:
|
|
branches:
|
|
- 'master'
|
|
- 'release-[0-9]+.[0-9]+'
|
|
# This needs to be an exact complement of `paths` in the build.yml workflow.
|
|
# This is required to bypass required checks since a required job is always
|
|
# needed to run.
|
|
paths-ignore:
|
|
- '**.cmake'
|
|
- '**/CMakeLists.txt'
|
|
- '**/CMakePresets.json'
|
|
- 'cmake.*/**'
|
|
- '.github/**'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
|
|
|
|
jobs:
|
|
# Test the minimum supported cmake.
|
|
old-cmake:
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
steps:
|
|
- run: echo "success"
|
|
|
|
# Offline build (USE_EXISTING_SRC_DIR=ON with no network access)
|
|
use-existing-src:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- run: echo "success"
|