├── .asf.yaml └── README.md /.asf.yaml: -------------------------------------------------------------------------------- 1 | github: 2 | description: "Apache NuttX Testing contains shared test infrastructure for Apache NuttX (incubating)" 3 | homepage: https://nuttx.apache.org/ 4 | features: 5 | # Enable issues management 6 | issues: true 7 | # Enable project for project management boards 8 | projects: true 9 | labels: 10 | - nuttx 11 | - rtos 12 | - embedded 13 | - real-time 14 | - mcu 15 | - microcontroller 16 | - ci 17 | enabled_merge_buttons: 18 | # disable squash button: 19 | squash: false 20 | # disable merge button: 21 | merge: false 22 | # enable rebase button: 23 | rebase: true 24 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # incubator-nuttx-testing 2 | 3 | *The contents of this repository have been moved to the CI section of the main Apache NuttX OS [repo](https://github.com/apache/incubator-nuttx/tree/master/tools/ci). Please file any issues and PRs there.* 4 | --------------------------------------------------------------------------------