forked from eclipse-threadx/netxduo
-
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 pull request #4 from renesas/FSPRA-2985-update_to_6.4.0
Update to v6.4.0
- Loading branch information
Showing
2,773 changed files
with
2,060,892 additions
and
38,562 deletions.
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,13 @@ | ||
{ | ||
"image": "ghcr.io/tiejunms/azure_rtos_docker", | ||
|
||
// Add the IDs of extensions you want installed when the container is created. | ||
"extensions": [ | ||
"ms-vscode.cpptools", | ||
"ms-vscode.cmake-tools" | ||
], | ||
|
||
"remoteUser": "vscode", | ||
|
||
"runArgs": [ "--cap-add=NET_ADMIN"] | ||
} |
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,220 @@ | ||
# This is a basic workflow that is manually triggered | ||
|
||
name: regression_test | ||
|
||
# Controls when the action will run. Triggers the workflow on push or pull request | ||
# events but only for the master branch | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
branches: [ master ] | ||
|
||
# A workflow run is made up of one or more jobs that can run sequentially or in parallel | ||
jobs: | ||
NetXDuo: | ||
permissions: | ||
contents: read | ||
issues: read | ||
checks: write | ||
pull-requests: write | ||
pages: write | ||
id-token: write | ||
uses: azure-rtos/threadx/.github/workflows/regression_template.yml@master | ||
with: | ||
build_script: ./scripts/build_nxd.sh | ||
test_script: ./scripts/test_nxd.sh | ||
cmake_path: ./test/cmake/netxduo | ||
result_affix: NetXDuo | ||
skip_deploy: true | ||
Web: | ||
permissions: | ||
contents: read | ||
issues: read | ||
checks: write | ||
pull-requests: write | ||
pages: write | ||
id-token: write | ||
uses: azure-rtos/threadx/.github/workflows/regression_template.yml@master | ||
with: | ||
build_script: ./scripts/build_web.sh | ||
test_script: ./scripts/test_web.sh | ||
cmake_path: ./test/cmake/web | ||
result_affix: Web | ||
skip_deploy: true | ||
PTP: | ||
permissions: | ||
contents: read | ||
issues: read | ||
checks: write | ||
pull-requests: write | ||
pages: write | ||
id-token: write | ||
uses: azure-rtos/threadx/.github/workflows/regression_template.yml@master | ||
with: | ||
build_script: ./scripts/build_ptp.sh | ||
test_script: ./scripts/test_ptp.sh | ||
cmake_path: ./test/cmake/ptp | ||
result_affix: PTP | ||
skip_deploy: true | ||
MQTT: | ||
permissions: | ||
contents: read | ||
issues: read | ||
checks: write | ||
pull-requests: write | ||
pages: write | ||
id-token: write | ||
uses: azure-rtos/threadx/.github/workflows/regression_template.yml@master | ||
with: | ||
build_script: ./scripts/build_mqtt.sh | ||
test_script: ./scripts/test_mqtt.sh | ||
cmake_path: ./test/cmake/mqtt | ||
result_affix: MQTT | ||
skip_deploy: true | ||
NetXDuo64: | ||
permissions: | ||
contents: read | ||
issues: read | ||
checks: write | ||
pull-requests: write | ||
pages: write | ||
id-token: write | ||
uses: azure-rtos/threadx/.github/workflows/regression_template.yml@master | ||
with: | ||
build_script: ./scripts/build_nxd64.sh | ||
test_script: ./scripts/test_nxd64.sh | ||
cmake_path: ./test/cmake/netxduo64 | ||
result_affix: NetXDuo64 | ||
skip_deploy: true | ||
NetXDuo_Fast: | ||
permissions: | ||
contents: read | ||
issues: read | ||
checks: write | ||
pull-requests: write | ||
pages: write | ||
id-token: write | ||
uses: azure-rtos/threadx/.github/workflows/regression_template.yml@master | ||
with: | ||
build_script: ./scripts/build_nxd_fast.sh | ||
test_script: ./scripts/test_nxd_fast.sh | ||
cmake_path: ./test/cmake/netxduo_fast | ||
result_affix: NetXDuo_Fast | ||
skip_deploy: true | ||
skip_coverage: true | ||
Azure_IoT: | ||
permissions: | ||
contents: read | ||
issues: read | ||
checks: write | ||
pull-requests: write | ||
pages: write | ||
id-token: write | ||
uses: azure-rtos/threadx/.github/workflows/regression_template.yml@master | ||
with: | ||
build_script: ./scripts/build_azure_iot.sh | ||
test_script: ./scripts/test_azure_iot.sh | ||
cmake_path: ./test/cmake/azure_iot | ||
result_affix: Azure_IoT | ||
skip_deploy: true | ||
Azure_IoT_Windows: | ||
permissions: | ||
contents: read | ||
issues: read | ||
checks: write | ||
pull-requests: write | ||
runs-on: windows-2019 | ||
steps: | ||
- name: Check out the repository | ||
uses: actions/checkout@v4 | ||
with: | ||
submodules: true | ||
- name: Checkout submodules | ||
run: | | ||
if (!(Test-Path ./test/cmake/threadx)) {git clone https://github.com/azure-rtos/threadx.git ./test/cmake/threadx --depth 1} | ||
- name: CMake | ||
run: | | ||
mkdir build | ||
cd build | ||
cmake ../test/cmake/azure_iot -A Win32 | ||
- name: Build | ||
run: | | ||
cd build | ||
cmake --build . | ||
Secure: | ||
permissions: | ||
contents: read | ||
issues: read | ||
checks: write | ||
pull-requests: write | ||
pages: write | ||
id-token: write | ||
uses: azure-rtos/threadx/.github/workflows/regression_template.yml@master | ||
with: | ||
build_script: ./scripts/build_secure.sh | ||
test_script: ./scripts/test_secure.sh | ||
cmake_path: ./test/cmake/nx_secure | ||
result_affix: Secure | ||
skip_deploy: true | ||
Crypto: | ||
permissions: | ||
contents: read | ||
issues: read | ||
checks: write | ||
pull-requests: write | ||
pages: write | ||
id-token: write | ||
uses: azure-rtos/threadx/.github/workflows/regression_template.yml@master | ||
with: | ||
build_script: ./scripts/build_crypto.sh | ||
test_script: ./scripts/test_crypto.sh | ||
cmake_path: ./test/cmake/crypto | ||
result_affix: Crypto | ||
skip_deploy: true | ||
Secure_Interoperability: | ||
permissions: | ||
contents: read | ||
issues: read | ||
checks: write | ||
pull-requests: write | ||
pages: write | ||
id-token: write | ||
uses: azure-rtos/threadx/.github/workflows/regression_template.yml@master | ||
with: | ||
install_script: ./scripts/install_secure.sh | ||
build_script: ./scripts/build_secure_interoperability.sh | ||
test_script: ./scripts/test_secure_interoperability.sh | ||
cmake_path: ./test/cmake/nx_secure_interoperability | ||
result_affix: Secure_Interoperability | ||
skip_deploy: true | ||
MQTT_Interoperability: | ||
permissions: | ||
contents: read | ||
issues: read | ||
checks: write | ||
pull-requests: write | ||
pages: write | ||
id-token: write | ||
uses: azure-rtos/threadx/.github/workflows/regression_template.yml@master | ||
with: | ||
install_script: ./scripts/install_mqtt.sh | ||
build_script: ./scripts/build_mqtt_interoperability.sh | ||
test_script: ./scripts/test_mqtt_interoperability.sh | ||
cmake_path: ./test/cmake/mqtt_interoperability | ||
result_affix: MQTT_Interoperability | ||
skip_deploy: true | ||
Deploy: | ||
permissions: | ||
contents: read | ||
issues: read | ||
checks: write | ||
pull-requests: write | ||
pages: write | ||
id-token: write | ||
needs: [NetXDuo, Web, MQTT, NetXDuo64, NetXDuo_Fast, Azure_IoT, Secure, Crypto, Secure_Interoperability, MQTT_Interoperability] | ||
uses: azure-rtos/threadx/.github/workflows/regression_template.yml@master | ||
with: | ||
skip_test: true | ||
deploy_list: "NetXDuo Web MQTT NetXDuo64 NetXDuo_Fast Azure_IoT Secure Crypto Secure_Interoperability MQTT_Interoperability" |
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.