mirror of
https://github.com/ArduPilot/ardupilot
synced 2025-03-11 17:13:56 -03:00
actions: only run single vehicle check for vehicle directory change
This commit is contained in:
parent
35b138afb1
commit
7f4c12dc28
26
.github/workflows/test_replay.yml
vendored
26
.github/workflows/test_replay.yml
vendored
@ -1,9 +1,27 @@
|
||||
name: test replay
|
||||
|
||||
on: [push, pull_request, workflow_dispatch]
|
||||
# paths:
|
||||
# - "*"
|
||||
# - "!README.md" <-- don't rebuild on doc change
|
||||
on:
|
||||
push:
|
||||
paths-ignore: # ignore vehicle only changes
|
||||
- 'AntennaTracker/**'
|
||||
- 'ArduPlane/**'
|
||||
- 'ArduSub/**'
|
||||
- 'Rover/**'
|
||||
- 'Blimp/**'
|
||||
- 'ArduCopter/**'
|
||||
|
||||
pull_request:
|
||||
paths-ignore: # ignore vehicle only changes
|
||||
- 'AntennaTracker/**'
|
||||
- 'ArduPlane/**'
|
||||
- 'ArduSub/**'
|
||||
- 'Rover/**'
|
||||
- 'Blimp/**'
|
||||
- 'ArduCopter/**'
|
||||
|
||||
workflow_dispatch:
|
||||
|
||||
|
||||
concurrency:
|
||||
group: ci-${{github.workflow}}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
23
.github/workflows/test_sitl_copter.yml
vendored
23
.github/workflows/test_sitl_copter.yml
vendored
@ -1,9 +1,24 @@
|
||||
name: test copter
|
||||
|
||||
on: [push, pull_request, workflow_dispatch]
|
||||
# paths:
|
||||
# - "*"
|
||||
# - "!README.md" <-- don't rebuild on doc change
|
||||
on:
|
||||
push:
|
||||
paths-ignore: # ignore vehicle only changes not for copter
|
||||
- 'AntennaTracker/**'
|
||||
- 'ArduPlane/**'
|
||||
- 'ArduSub/**'
|
||||
- 'Rover/**'
|
||||
- 'Blimp/**'
|
||||
|
||||
pull_request:
|
||||
paths-ignore: # ignore vehicle only changes not for copter
|
||||
- 'AntennaTracker/**'
|
||||
- 'ArduPlane/**'
|
||||
- 'ArduSub/**'
|
||||
- 'Rover/**'
|
||||
- 'Blimp/**'
|
||||
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ci-${{github.workflow}}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
25
.github/workflows/test_sitl_periph.yml
vendored
25
.github/workflows/test_sitl_periph.yml
vendored
@ -1,9 +1,26 @@
|
||||
name: test ap_periph
|
||||
|
||||
on: [push, pull_request, workflow_dispatch]
|
||||
# paths:
|
||||
# - "*"
|
||||
# - "!README.md" <-- don't rebuild on doc change
|
||||
on:
|
||||
push:
|
||||
paths-ignore: # ignore vehicle only changes
|
||||
- 'AntennaTracker/**'
|
||||
- 'ArduPlane/**'
|
||||
- 'ArduSub/**'
|
||||
- 'Rover/**'
|
||||
- 'Blimp/**'
|
||||
- 'ArduCopter/**'
|
||||
|
||||
pull_request:
|
||||
paths-ignore: # ignore vehicle only changes
|
||||
- 'AntennaTracker/**'
|
||||
- 'ArduPlane/**'
|
||||
- 'ArduSub/**'
|
||||
- 'Rover/**'
|
||||
- 'Blimp/**'
|
||||
- 'ArduCopter/**'
|
||||
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ci-${{github.workflow}}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
23
.github/workflows/test_sitl_plane.yml
vendored
23
.github/workflows/test_sitl_plane.yml
vendored
@ -1,9 +1,24 @@
|
||||
name: test plane
|
||||
|
||||
on: [push, pull_request, workflow_dispatch]
|
||||
# paths:
|
||||
# - "*"
|
||||
# - "!README.md" <-- don't rebuild on doc change
|
||||
on:
|
||||
push:
|
||||
paths-ignore: # ignore vehicle only changes not for plane
|
||||
- 'AntennaTracker/**'
|
||||
- 'ArduSub/**'
|
||||
- 'Rover/**'
|
||||
- 'Blimp/**'
|
||||
- 'ArduCopter/**'
|
||||
|
||||
pull_request:
|
||||
paths-ignore: # ignore vehicle only changes not for plane
|
||||
- 'AntennaTracker/**'
|
||||
- 'ArduSub/**'
|
||||
- 'Rover/**'
|
||||
- 'Blimp/**'
|
||||
- 'ArduCopter/**'
|
||||
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ci-${{github.workflow}}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
23
.github/workflows/test_sitl_rover.yml
vendored
23
.github/workflows/test_sitl_rover.yml
vendored
@ -1,9 +1,24 @@
|
||||
name: test rover
|
||||
|
||||
on: [push, pull_request, workflow_dispatch]
|
||||
# paths:
|
||||
# - "*"
|
||||
# - "!README.md" <-- don't rebuild on doc change
|
||||
on:
|
||||
push:
|
||||
paths-ignore: # ignore vehicle only changes not for rover
|
||||
- 'AntennaTracker/**'
|
||||
- 'ArduPlane/**'
|
||||
- 'ArduSub/**'
|
||||
- 'Blimp/**'
|
||||
- 'ArduCopter/**'
|
||||
|
||||
pull_request:
|
||||
paths-ignore: # ignore vehicle only changes not for rover
|
||||
- 'AntennaTracker/**'
|
||||
- 'ArduPlane/**'
|
||||
- 'ArduSub/**'
|
||||
- 'Blimp/**'
|
||||
- 'ArduCopter/**'
|
||||
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ci-${{github.workflow}}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
23
.github/workflows/test_sitl_sub.yml
vendored
23
.github/workflows/test_sitl_sub.yml
vendored
@ -1,9 +1,24 @@
|
||||
name: test sub
|
||||
|
||||
on: [push, pull_request, workflow_dispatch]
|
||||
# paths:
|
||||
# - "*"
|
||||
# - "!README.md" <-- don't rebuild on doc change
|
||||
on:
|
||||
push:
|
||||
paths-ignore: # ignore vehicle only changes not for sub
|
||||
- 'AntennaTracker/**'
|
||||
- 'ArduPlane/**'
|
||||
- 'Rover/**'
|
||||
- 'Blimp/**'
|
||||
- 'ArduCopter/**'
|
||||
|
||||
pull_request:
|
||||
paths-ignore: # ignore vehicle only changes not for sub
|
||||
- 'AntennaTracker/**'
|
||||
- 'ArduPlane/**'
|
||||
- 'Rover/**'
|
||||
- 'Blimp/**'
|
||||
- 'ArduCopter/**'
|
||||
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ci-${{github.workflow}}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
23
.github/workflows/test_sitl_tracker.yml
vendored
23
.github/workflows/test_sitl_tracker.yml
vendored
@ -1,9 +1,24 @@
|
||||
name: test tracker
|
||||
|
||||
on: [push, pull_request, workflow_dispatch]
|
||||
# paths:
|
||||
# - "*"
|
||||
# - "!README.md" <-- don't rebuild on doc change
|
||||
on:
|
||||
push:
|
||||
paths-ignore: # ignore vehicle only changes
|
||||
- 'ArduPlane/**'
|
||||
- 'ArduSub/**'
|
||||
- 'Rover/**'
|
||||
- 'Blimp/**'
|
||||
- 'ArduCopter/**'
|
||||
|
||||
pull_request:
|
||||
paths-ignore: # ignore vehicle only changes
|
||||
- 'ArduPlane/**'
|
||||
- 'ArduSub/**'
|
||||
- 'Rover/**'
|
||||
- 'Blimp/**'
|
||||
- 'ArduCopter/**'
|
||||
|
||||
workflow_dispatch:
|
||||
|
||||
concurrency:
|
||||
group: ci-${{github.workflow}}-${{ github.ref }}
|
||||
cancel-in-progress: true
|
||||
|
Loading…
Reference in New Issue
Block a user