forked from RIOT-OS/RIOT
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into rust-gcoap-add-saul
Makefile.ci was completely removed, pending regeneration
- Loading branch information
Showing
10,223 changed files
with
1,426,653 additions
and
345,090 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
# Between RIOT releases, this file points all projects in the tree to git | ||
# versions (still respecting Cargo.lock). | ||
# | ||
# Authors of out-of-tree applications can use the same lines in their | ||
# Cargo.toml, copy this file over, or just use the released versions. | ||
|
||
[patch.crates-io] | ||
riot-sys = { git = "https://github.com/RIOT-OS/rust-riot-sys" } | ||
riot-wrappers = { git = "https://github.com/RIOT-OS/rust-riot-wrappers" } |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,37 @@ | ||
name: check-commits | ||
on: | ||
pull_request: | ||
types: [opened, reopened, synchronize] | ||
merge_group: | ||
|
||
jobs: | ||
check-commits: | ||
runs-on: ubuntu-latest | ||
if: ${{ github.base_ref }} | ||
strategy: | ||
fail-fast: false | ||
matrix: | ||
check: [commit-msg, pr_check] | ||
steps: | ||
- uses: actions/checkout@main | ||
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 | ||
run: | | ||
./dist/tools/${{ matrix.check }}/check.sh "${{ github.base_ref }}" | ||
check-commits-success: | ||
needs: check-commits | ||
if: always() && github.event_name != 'merge_group' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: check-commits succeeded | ||
uses: re-actors/alls-green@release/v1 | ||
with: | ||
jobs: ${{ toJSON(needs) }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
name: check-labels | ||
on: | ||
pull_request_target: | ||
types: [opened, reopened, labeled, unlabeled, synchronize] | ||
pull_request_review: | ||
types: [submitted, dismissed] | ||
merge_group: | ||
|
||
jobs: | ||
check-labels: | ||
if: github.event_name != 'merge_group' | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: RIOT-OS/check-labels-action@v1.1.1 | ||
with: | ||
access_token: ${{ secrets.GITHUB_TOKEN }} | ||
unset_labels: 'CI: needs squashing,State: waiting for CI update,State: waiting for other PR,Process: blocked by feature freeze' | ||
cond_labels: '(Process: needs >1 ACK,review.approvals>1),(Area: RDM,review.approvals>2)' | ||
missing_approvals_label: 'Process: missing approvals' | ||
pull_request: ${{ github.event.pull_request.number }} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.