mirror of
https://gitee.com/mirrors_PX4/PX4-Autopilot.git
synced 2026-04-14 10:07:39 +08:00
workflows: build pull requests and master
With this change pull requests from forks are also built. We yet need to verify if tags/releases are built or if we need to specify the tags as well.
This commit is contained in:
parent
a2e95f171f
commit
00728dab18
8
.github/workflows/build_tests.yml
vendored
8
.github/workflows/build_tests.yml
vendored
@ -1,6 +1,12 @@
|
||||
name: Build Tests
|
||||
|
||||
on: [push]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
pull_request:
|
||||
branches:
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
8
.github/workflows/ccpp.yml
vendored
8
.github/workflows/ccpp.yml
vendored
@ -1,6 +1,12 @@
|
||||
name: C/C++ CI
|
||||
|
||||
on: [push]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
pull_request:
|
||||
branches:
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
8
.github/workflows/compile_nuttx.yml
vendored
8
.github/workflows/compile_nuttx.yml
vendored
@ -1,6 +1,12 @@
|
||||
name: compile nuttx
|
||||
|
||||
on: [push]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
pull_request:
|
||||
branches:
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
8
.github/workflows/sitl_tests.yml
vendored
8
.github/workflows/sitl_tests.yml
vendored
@ -1,6 +1,12 @@
|
||||
name: SITL Tests
|
||||
|
||||
on: [push]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
pull_request:
|
||||
branches:
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
8
.github/workflows/sitl_tests_coverage.yml
vendored
8
.github/workflows/sitl_tests_coverage.yml
vendored
@ -1,6 +1,12 @@
|
||||
name: SITL Tests (Code Coverage)
|
||||
|
||||
on: [push]
|
||||
on:
|
||||
push:
|
||||
branches:
|
||||
- 'master'
|
||||
pull_request:
|
||||
branches:
|
||||
- '*'
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user