mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
Merge pull request #15564 from miri64/gh-actions/enh/pr-checks-to-own-workflow
Github Actions: move PR checks from static tests to own workflow
This commit is contained in:
commit
38a0a86b1b
15
.github/workflows/check-labels.yml
vendored
15
.github/workflows/check-labels.yml
vendored
@ -1,15 +0,0 @@
|
||||
name: check-labels
|
||||
on:
|
||||
pull_request:
|
||||
types: [opened, reopened, labeled, unlabeled, synchronize]
|
||||
pull_request_review:
|
||||
types: [submitted, dismissed]
|
||||
jobs:
|
||||
check-labels:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: RIOT-OS/check-labels-action@v1.0.0
|
||||
with:
|
||||
access_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
unset_labels: 'CI: needs squashing,State: waiting for other PR'
|
||||
cond_labels: '(Process: needs >1 ACK,review.approvals>1),(Area: RDM,review.approvals>2)'
|
39
.github/workflows/check-pr.yml
vendored
Normal file
39
.github/workflows/check-pr.yml
vendored
Normal file
@ -0,0 +1,39 @@
|
||||
name: check-pr
|
||||
on:
|
||||
pull_request:
|
||||
types: [opened, reopened, labeled, unlabeled, synchronize]
|
||||
pull_request_review:
|
||||
types: [submitted, dismissed]
|
||||
jobs:
|
||||
check-labels:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: RIOT-OS/check-labels-action@v1.0.0
|
||||
with:
|
||||
access_token: ${{ secrets.GITHUB_TOKEN }}
|
||||
unset_labels: 'CI: needs squashing,State: waiting for other PR'
|
||||
cond_labels: '(Process: needs >1 ACK,review.approvals>1),(Area: RDM,review.approvals>2)'
|
||||
check-commits:
|
||||
runs-on: ubuntu-latest
|
||||
if: ${{ github.base_ref }}
|
||||
strategy:
|
||||
fail-fast: false
|
||||
matrix:
|
||||
check: [commit-msg, pr_check]
|
||||
steps:
|
||||
- uses: actions/checkout@master
|
||||
with:
|
||||
# Use the SHA of the PR branch as-is, not the PR branch merged
|
||||
# in master (default behavior in GH actions)
|
||||
# See https://github.com/actions/checkout#checkout-pull-request-head-commit-instead-of-merge-commit
|
||||
ref: ${{ github.event.pull_request.head.sha }}
|
||||
fetch-depth: 0
|
||||
- name: Fetch base branch
|
||||
run:
|
||||
git fetch origin '${{ github.base_ref }}:${{ github.base_ref }}'
|
||||
- name: Run checks
|
||||
env: # enforce deactivation of label check in pr_check
|
||||
TRAVIS_PULL_REQUEST:
|
||||
CI_PULL_NR:
|
||||
run: |
|
||||
./dist/tools/${{ matrix.check }}/check.sh "${{ github.base_ref }}"
|
4
.github/workflows/static-test.yml
vendored
4
.github/workflows/static-test.yml
vendored
@ -18,10 +18,6 @@ jobs:
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
# Use the SHA of the PR branch as-is, not the PR branch merged
|
||||
# in master (default behavior in GH actions)
|
||||
# See https://github.com/actions/checkout#checkout-pull-request-head-commit-instead-of-merge-commit
|
||||
ref: ${{ github.event.pull_request.head.sha }}
|
||||
fetch-depth: 0
|
||||
- name: Setup git
|
||||
run: |
|
||||
|
2
dist/tools/ci/static_tests.sh
vendored
2
dist/tools/ci/static_tests.sh
vendored
@ -103,7 +103,6 @@ fi
|
||||
|
||||
export BASE_BRANCH="${CI_BASE_BRANCH}"
|
||||
|
||||
run ./dist/tools/commit-msg/check.sh "${BASE_BRANCH}"
|
||||
run ./dist/tools/whitespacecheck/check.sh "${BASE_BRANCH}"
|
||||
DIFFFILTER="MR" ERROR_EXIT_CODE=0 run ./dist/tools/licenses/check.sh
|
||||
DIFFFILTER="AC" run ./dist/tools/licenses/check.sh
|
||||
@ -111,7 +110,6 @@ run ./dist/tools/doccheck/check.sh
|
||||
run ./dist/tools/externc/check.sh
|
||||
run ./dist/tools/cppcheck/check.sh
|
||||
run ./dist/tools/vera++/check.sh
|
||||
run ./dist/tools/pr_check/pr_check.sh "${BASE_BRANCH}"
|
||||
run ./dist/tools/coccinelle/check.sh
|
||||
run ./dist/tools/flake8/check.sh
|
||||
run ./dist/tools/headerguards/check.sh
|
||||
|
2
dist/tools/pr_check/README.md
vendored
2
dist/tools/pr_check/README.md
vendored
@ -6,7 +6,7 @@ another Pull Request.
|
||||
# Usage
|
||||
|
||||
```bash
|
||||
./pr_check.sh [<master branch>]
|
||||
./check.sh [<master branch>]
|
||||
```
|
||||
|
||||
The optional `<master branch>` parameter refers to the branch the pull request's
|
||||
|
2
dist/tools/pr_check/check_labels.sh
vendored
2
dist/tools/pr_check/check_labels.sh
vendored
@ -8,7 +8,7 @@
|
||||
#
|
||||
|
||||
# The following script part has been moved here from:
|
||||
# ./dist/tools/pr_check/pr_check.sh
|
||||
# ./dist/tools/pr_check/check.sh
|
||||
|
||||
GITHUB_API_HOST="https://api.github.com"
|
||||
GITHUB_REPO="RIOT-OS/RIOT"
|
||||
|
6
dist/tools/whitespacecheck/check.sh
vendored
6
dist/tools/whitespacecheck/check.sh
vendored
@ -1,4 +1,4 @@
|
||||
#!/bin/sh
|
||||
#!/bin/bash
|
||||
|
||||
# Copyright 2015 Oliver Hahm <oliver.hahm@inria.fr>
|
||||
#
|
||||
@ -38,7 +38,7 @@ fi
|
||||
git -c core.whitespace="tab-in-indent,tabwidth=4" \
|
||||
diff --check "$(git merge-base "${BRANCH}" HEAD)" -- *.[ch] ${IGNORE} \
|
||||
| ${LOG}
|
||||
RESULT=$?
|
||||
RESULT=${PIPESTATUS[0]}
|
||||
|
||||
# Git regards any trailing white space except `\n` as an error so `\r` is
|
||||
# checked here, too
|
||||
@ -46,7 +46,7 @@ git -c core.whitespace="trailing-space" \
|
||||
diff --check "$(git merge-base "${BRANCH}" HEAD)" -- . ${IGNORE} \
|
||||
| ${LOG}
|
||||
|
||||
TRAILING_RESULT=$?
|
||||
TRAILING_RESULT=${PIPESTATUS[0]}
|
||||
|
||||
github_annotate_parse_log_default
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user