forked from apache/nuttx
-
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 remote-tracking branch 'upstream/master'
- Loading branch information
Showing
11,085 changed files
with
469,050 additions
and
304,206 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,25 @@ | ||
# 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. | ||
# | ||
|
||
name: ci-container | ||
inputs: | ||
run: # id of input | ||
description: 'Commands to run' | ||
required: true | ||
runs: | ||
using: 'docker' | ||
image: 'docker.pkg.github.com/apache/incubator-nuttx/apache-nuttx-ci-linux' | ||
args: | ||
- "/bin/bash" | ||
- "-ce" | ||
- ${{ inputs.run }} |
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 @@ | ||
[flake8] | ||
ignore = W503,W605 | ||
max-complexity = 27 | ||
max-line-length = 125 | ||
show-source = True | ||
statistics = True | ||
|
||
[isort] | ||
profile = black |
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,17 @@ | ||
name: Cancelling Duplicates | ||
on: | ||
workflow_run: | ||
workflows: ["Build", "Check", "Build Documentation", " Lint", "Docker-Linux"] | ||
types: ['requested'] | ||
|
||
jobs: | ||
cancel-duplicate-workflow-runs: | ||
name: "Cancel duplicate workflow runs" | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: apache/airflow-cancel-workflow-runs@master | ||
name: "Cancel duplicate workflow runs" | ||
with: | ||
cancelMode: allDuplicates | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
sourceRunId: ${{ github.event.workflow_run.id }} |
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,59 @@ | ||
# 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. | ||
# | ||
name: Docker-Linux | ||
|
||
on: | ||
push: | ||
# Publish `master` as Docker `latest` image. | ||
branches: | ||
- master | ||
paths: | ||
- 'tools/ci/docker/linux/**' | ||
- '.github/workflows/docker_linux.yml' | ||
|
||
# Run builds for any PRs. | ||
pull_request: | ||
paths: | ||
- 'tools/ci/docker/linux/**' | ||
- '.github/workflows/docker_linux.yml' | ||
|
||
env: | ||
IMAGE_NAME: apache-nuttx-ci-linux | ||
|
||
jobs: | ||
# Push image to GitHub Packages. | ||
push: | ||
runs-on: ubuntu-latest | ||
env: | ||
DOCKER_BUILDKIT: 1 | ||
IMAGE_TAG: docker.pkg.github.com/${{ github.repository }}/apache-nuttx-ci-linux | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- name: Log into registry | ||
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login docker.pkg.github.com -u ${{ github.actor }} --password-stdin | ||
|
||
- name: Build Linux image | ||
run: | | ||
echo "Building Linux Image using cache from $IMAGE_TAG" | ||
docker build \ | ||
--build-arg BUILDKIT_INLINE_CACHE=1 \ | ||
--cache-from $IMAGE_TAG \ | ||
--tag $IMAGE_TAG \ | ||
-f ./tools/ci/docker/linux/Dockerfile ./tools/ci/docker/ | ||
- name: Push Linux image | ||
if: (github.event_name == 'push') && (github.ref == 'refs/heads/master') | ||
run: | | ||
docker push $IMAGE_TAG |
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 |
---|---|---|
@@ -1,15 +1,24 @@ | ||
name: ❄️ Lint | ||
name: Lint | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
yamllint: | ||
name: 🍺 YAML | ||
lint: | ||
name: Lint | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: 🧹 YAML Lint | ||
with: | ||
fetch-depth: 0 | ||
- run: mkdir super-linter.report | ||
- name: Lint | ||
uses: github/super-linter@v3 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
VALIDATE_ALL_CODEBASE: false | ||
VALIDATE_PYTHON_BLACK: true | ||
VALIDATE_PYTHON_FLAKE8: true | ||
PYTHON_FLAKE8_CONFIG_FILE: setup.cfg | ||
VALIDATE_PYTHON_ISORT: true | ||
PYTHON_ISORT_CONFIG_FILE: setup.cfg | ||
VALIDATE_YAML: true | ||
FILTER_REGEX_INCLUDE: .*\.github/.* |
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,94 @@ | ||
This is a list of all the contributors tha have submitted ICLA, SGA | ||
If you are not on this list and believe you should be, please inform us. | ||
|
||
ICLA | ||
==== | ||
Abdelatif Guettouche | ||
Adam Porter | ||
Alan Carvalho de Assis | ||
Alin Jerpelea | ||
Anthony Merlino | ||
Beat Kung | ||
Chao An | ||
David S. Alessio | ||
David Sidrane | ||
Dong Heng | ||
Goden Freemans | ||
Guiding Li | ||
Gwenhael Goavec | ||
Haitao Liu | ||
Henry Adam Feuer (Adam Feuer) | ||
Herman A Glenn (Hal Glenn) | ||
Ivan Petrov Ucherdzhiev (Ivan Ucherdzhiev) | ||
Jacob A Dahl (Jacob Dahl) | ||
Jaehyuk Cho | ||
Janne Rosberg | ||
Johannes Schock | ||
Jose Pablo Carballo | ||
Jukka Laitinen | ||
Junmin Kim | ||
Ken Pettit | ||
Laurent Latil | ||
Manuel Stuhn | ||
Marc Rechte | ||
Marc Rosen | ||
Marco Krahl | ||
Mark Schulte | ||
Martin Lederhilger | ||
Masatoshi Ueno | ||
Masayuki Ishikawa | ||
Mateusz Tomasz Szafoni (Mateusz Szafoni) | ||
Matias Nitsche | ||
Matous Pokorny | ||
Matthew Trescott | ||
Mattias Edlund | ||
Michael Jung | ||
Michal Lyszczek | ||
Miguel Ángel Herranz Trillo (Miguel Herranz) | ||
Mihai Serban | ||
Neil Hancock | ||
Nicholas Elliot Chin (Nicholas Chin) | ||
Oki Minabe | ||
Paul Alexander Patience (Paul A. Patience) | ||
Petro Karashchenko | ||
Pierre-Noel Bouteville | ||
Pierre-Olivier Vauboin (PO Vauboin) | ||
Richard Cochran | ||
Robert A. Feretich (Bob Feretich) | ||
Sakari Matias Kapanen (Sakari Kapanen) | ||
Sara da Cunha Monteiro de Souza (Sara Monteiro) | ||
Sebastian Ene | ||
Sebastien Lorquet | ||
Sergey Nikitenko | ||
Takashi Yamamoto (Yamamoto Takashi) | ||
Thomas Axelsson | ||
Uros Platise | ||
Vasilijev Alexand Anatoljevich (Alexander Vasiliev) | ||
Wolfgang Gerd Reißnegger (Wolfgang Reißnegger) | ||
Xiang Xiao | ||
Yuuichi Nakamura | ||
|
||
CCLA | ||
==== | ||
Starcat LLC (Adam Feuer) | ||
|
||
SGA | ||
=== | ||
2G Engineering | ||
Actia Nordic AB | ||
Beijing Xiaomi Mobile Software Co., Ltd | ||
Bouffalo Lab (Nanjing) Co., Ltd. | ||
Datavision S.R.O. | ||
DS Automotion GmbH | ||
Espressif Systems (Shanghai) Co. Ltd. | ||
Falker Atomação Agrícola Ltda | ||
Gregory Ellis Nutt | ||
Max Holtzberg | ||
RAF Research LLC | ||
Software Grant from Uniquix Technologia Ltda | ||
Sony | ||
Zhu Yan Lin | ||
|
||
NOTE: | ||
To avoid spam the email addresses can be retrieved from git history | ||
|
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.