nimble/ll: Set handle in cmd_resp before return #1251
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
# | |
# Licensed to the Apache Software Foundation (ASF) under one | |
# or more contributor license agreements. See the NOTICE file | |
# distributed with this work for additional information | |
# regarding copyright ownership. The ASF licenses this file | |
# to you 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: Check ports syscfg update | |
on: | |
push: | |
branches: | |
- 'master' | |
schedule: | |
- cron: '37 21 * * *' | |
jobs: | |
targets: | |
name: Check ports syscfg update | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
pull-requests: write | |
if: github.event.repository.fork == false | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-go@v3 | |
with: | |
go-version: 'stable' | |
- uses: carlosperate/arm-none-eabi-gcc-action@48db4484a55750df7a0ccca63347fcdea6534d78 | |
with: | |
release: '12.2.Rel1' | |
- name: Install Dependencies | |
shell: bash | |
run: | | |
sudo apt-get update | |
sudo apt-get install -y gcc-multilib | |
- name: Install newt | |
shell: bash | |
run: | | |
go version | |
go install mynewt.apache.org/newt/newt@latest | |
- name: Setup project | |
shell: bash | |
run: | | |
newt new build | |
cp -f .github/project.yml build/project.yml | |
cd build | |
newt upgrade --shallow=1 | |
rm -rf repos/apache-mynewt-nimble | |
git clone .. repos/apache-mynewt-nimble | |
- name: Build ports tests targets | |
shell: bash | |
run: | | |
cd build | |
./repos/apache-mynewt-nimble/porting/update_generated_files.sh | |
- name: Check ports syscfg (debug) | |
shell: bash | |
if: runner.debug == '1' | |
run: | | |
cd build/repos/apache-mynewt-nimble | |
git diff | |
- name: Check ports syscfg | |
shell: bash | |
run: | | |
cd build/repos/apache-mynewt-nimble | |
if ! git diff --quiet; then | |
echo -e "\033[0;31mChanges in system configuration files detected:" | |
git diff --name-only | |
cp porting/examples/linux/include/syscfg/syscfg.h ../../../porting/examples/linux/include/syscfg/syscfg.h | |
cp porting/examples/linux_blemesh/include/syscfg/syscfg.h ../../../porting/examples/linux_blemesh/include/syscfg/syscfg.h | |
cp porting/examples/nuttx/include/syscfg/syscfg.h ../../../porting/examples/nuttx/include/syscfg/syscfg.h | |
cp porting/nimble/include/syscfg/syscfg.h ../../../porting/nimble/include/syscfg/syscfg.h | |
cp porting/npl/riot/include/syscfg/syscfg.h ../../../porting/npl/riot/include/syscfg/syscfg.h | |
else | |
echo "No changes detected in system configuration files." | |
fi | |
cd ../../.. | |
rm -rf build | |
- name: Create Pull Request | |
uses: peter-evans/create-pull-request@v6 | |
with: | |
author: Mynewt Bot <[email protected]> | |
token: ${{ secrets.GITHUB_TOKEN }} | |
commit-message: | | |
porting: Update ports syscfg | |
branch: update-ports-syscfg | |
title: "Update ports syscfg" | |
body: | | |
Update NimBLE ports configurations: | |
- Removes all /* */ comments from `syscfg.h` files. | |
- Adds the license header to each `syscfg.h` file. | |
- Auto-generated by [create-pull-request][1] | |
[1]: https://github.com/peter-evans/create-pull-request |