2020-03-31 08:18:37 +02:00
|
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
# you may not use this file except in compliance with the License.
|
|
|
|
# You may obtain a copy of the License at
|
|
|
|
#
|
|
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
#
|
|
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
# See the License for the specific language governing permissions and
|
|
|
|
# limitations under the License.
|
|
|
|
#
|
2020-04-15 07:22:38 +02:00
|
|
|
name: Check
|
2020-03-31 08:18:37 +02:00
|
|
|
|
|
|
|
on:
|
|
|
|
pull_request:
|
|
|
|
|
2021-12-17 14:50:57 +01:00
|
|
|
concurrency:
|
|
|
|
group: check-${{ github.event.pull_request.number || github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2022-06-17 02:32:28 +02:00
|
|
|
permissions:
|
|
|
|
contents: read
|
|
|
|
|
2020-03-31 08:18:37 +02:00
|
|
|
jobs:
|
|
|
|
check:
|
|
|
|
runs-on: ubuntu-18.04
|
|
|
|
|
|
|
|
steps:
|
2020-12-29 22:51:02 +01:00
|
|
|
- name: Checkout nuttx repo
|
2022-06-21 15:44:19 +02:00
|
|
|
uses: actions/checkout@v3
|
2020-12-29 22:51:02 +01:00
|
|
|
with:
|
|
|
|
repository: apache/incubator-nuttx
|
|
|
|
path: nuttx
|
|
|
|
fetch-depth: 0
|
2020-03-31 08:18:37 +02:00
|
|
|
|
2020-12-29 22:51:02 +01:00
|
|
|
- name: Checkout apps repo
|
2022-06-21 15:44:19 +02:00
|
|
|
uses: actions/checkout@v3
|
2020-12-29 22:51:02 +01:00
|
|
|
with:
|
|
|
|
repository: apache/incubator-nuttx-apps
|
|
|
|
path: apps
|
|
|
|
fetch-depth: 0
|
2020-03-31 08:18:37 +02:00
|
|
|
|
2020-12-29 22:51:02 +01:00
|
|
|
- name: Check Pull Request
|
|
|
|
run: |
|
|
|
|
echo "::add-matcher::nuttx/.github/nxstyle.json"
|
|
|
|
cd apps
|
|
|
|
commits="${{ github.event.pull_request.base.sha }}..HEAD"
|
|
|
|
git log --oneline $commits
|
2022-04-09 13:46:43 +02:00
|
|
|
echo "../nuttx/tools/checkpatch.sh -m -g $commits"
|
|
|
|
../nuttx/tools/checkpatch.sh -m -g $commits
|