Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commit2dd9039

Browse files
committed
Test commit
1 parentd830f6a commit2dd9039

File tree

2 files changed

+36
-31
lines changed

2 files changed

+36
-31
lines changed

‎.github/workflows/Continuous-Integration.yml

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -21,27 +21,27 @@ on:
2121
-'!CI/build/platformio-builder.py'
2222
-tools/**
2323
jobs:
24-
astyle_check:
25-
runs-on:ubuntu-latest
26-
name:AStyle check
27-
steps:
28-
# First of all, clone the repo using the checkout action.
29-
-name:Checkout
30-
uses:actions/checkout@master
24+
#astyle_check:
25+
# runs-on: ubuntu-latest
26+
# name: AStyle check
27+
# steps:
28+
# # First of all, clone the repo using the checkout action.
29+
# - name: Checkout
30+
# uses: actions/checkout@master
3131

32-
-name:Astyle check
33-
id:Astyle
34-
uses:stm32duino/actions/astyle-check@master
35-
with:
36-
astyle-definition:'CI/astyle/.astylerc'
37-
ignore-path-list:'CI/astyle/.astyleignore'
32+
# - name: Astyle check
33+
# id: Astyle
34+
# uses: stm32duino/actions/astyle-check@master
35+
# with:
36+
# astyle-definition: 'CI/astyle/.astylerc'
37+
# ignore-path-list: 'CI/astyle/.astyleignore'
3838

39-
# Use the output from the `Astyle` step
40-
-name:Astyle Errors
41-
if:failure()
42-
run:|
43-
cat ${{ steps.Astyle.outputs.astyle-result }}
44-
exit 1
39+
# # Use the output from the `Astyle` step
40+
# - name: Astyle Errors
41+
# if: failure()
42+
# run: |
43+
# cat ${{ steps.Astyle.outputs.astyle-result }}
44+
# exit 1
4545
core_build:
4646
runs-on:ubuntu-latest
4747
name:Core compilation
@@ -60,14 +60,14 @@ jobs:
6060
run:|
6161
cat ${{ steps.Compile.outputs.compile-result }}
6262
exit 1
63-
pio_build:
64-
runs-on:ubuntu-latest
65-
name:PlatformIO test
66-
steps:
67-
# First of all, clone the repo using the checkout action.
68-
-name:Checkout
69-
uses:actions/checkout@master
63+
#pio_build:
64+
# runs-on: ubuntu-latest
65+
# name: PlatformIO test
66+
# steps:
67+
# # First of all, clone the repo using the checkout action.
68+
# - name: Checkout
69+
# uses: actions/checkout@master
7070

71-
-name:PlatformIO
72-
id:Compile
73-
uses:./.github/actions/pio-build
71+
# - name: PlatformIO
72+
# id: Compile
73+
# uses: ./.github/actions/pio-build

‎CI/build/arduino-cli.py

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -451,6 +451,9 @@ def find_board():
451451
[arduino_cli,"board","listall","--format","json"],
452452
stderr=subprocess.DEVNULL,
453453
).decode("utf-8")
454+
print("######### board listall ###########")
455+
print(output)
456+
print("###################################")
454457
boards_list=json.loads(output)
455458
ifboards_listisnotNone:
456459
forboardinboards_list["boards"]:
@@ -468,9 +471,11 @@ def find_board():
468471
forfqbninfqbn_list_tmp:
469472
try:
470473
output=subprocess.check_output(
471-
[arduino_cli,"board","details","--format","json",fqbn],
472-
stderr=subprocess.DEVNULL,
474+
[arduino_cli,"board","details","--format","json",fqbn]
473475
).decode("utf-8")
476+
print("######### board details {} ###########".format(fqbn))
477+
print(output)
478+
print("######################################")
474479
board_detail=json.loads(output)
475480
ifboard_detailisnotNone:
476481
if"config_options"notinboard_detail:

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp