Message ID | 20210505184405.1077111-1-hj.tedd.an@gmail.com (mailing list archive) |
---|---|
State | Accepted |
Delegated to: | Luiz Von Dentz |
Headers | show |
Series | [BlueZ,1/2] gitignore: Add generated files to the ignore list | expand |
This is automated email and please do not reply to this email! Dear submitter, Thank you for submitting the patches to the linux bluetooth mailing list. This is a CI test results with your patch series: PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=477477 ---Test result--- Test Summary: CheckPatch PASS 0.77 seconds GitLint PASS 0.27 seconds Prep - Setup ELL PASS 52.92 seconds Build - Prep PASS 0.15 seconds Build - Configure PASS 9.25 seconds Build - Make PASS 231.00 seconds Make Check PASS 9.59 seconds Make Dist PASS 13.58 seconds Make Dist - Configure PASS 5.69 seconds Make Dist - Make PASS 92.58 seconds Build w/ext ELL - Configure PASS 9.32 seconds Build w/ext ELL - Make PASS 217.51 seconds Details ############################## Test: CheckPatch - PASS Desc: Run checkpatch.pl script with rule in .checkpatch.conf ############################## Test: GitLint - PASS Desc: Run gitlint with rule in .gitlint ############################## Test: Prep - Setup ELL - PASS Desc: Clone, build, and install ELL ############################## Test: Build - Prep - PASS Desc: Prepare environment for build ############################## Test: Build - Configure - PASS Desc: Configure the BlueZ source tree ############################## Test: Build - Make - PASS Desc: Build the BlueZ source tree ############################## Test: Make Check - PASS Desc: Run 'make check' ############################## Test: Make Dist - PASS Desc: Run 'make dist' and build the distribution tarball ############################## Test: Make Dist - Configure - PASS Desc: Configure the source from distribution tarball ############################## Test: Make Dist - Make - PASS Desc: Build the source from distribution tarball ############################## Test: Build w/ext ELL - Configure - PASS Desc: Configure BlueZ source with '--enable-external-ell' configuration ############################## Test: Build w/ext ELL - Make - PASS Desc: Build BlueZ source with '--enable-external-ell' configuration --- Regards, Linux Bluetooth
Hi Tedd, On Wed, May 5, 2021 at 12:14 PM <bluez.test.bot@gmail.com> wrote: > > This is automated email and please do not reply to this email! > > Dear submitter, > > Thank you for submitting the patches to the linux bluetooth mailing list. > This is a CI test results with your patch series: > PW Link:https://patchwork.kernel.org/project/bluetooth/list/?series=477477 > > ---Test result--- > > Test Summary: > CheckPatch PASS 0.77 seconds > GitLint PASS 0.27 seconds > Prep - Setup ELL PASS 52.92 seconds > Build - Prep PASS 0.15 seconds > Build - Configure PASS 9.25 seconds > Build - Make PASS 231.00 seconds > Make Check PASS 9.59 seconds > Make Dist PASS 13.58 seconds > Make Dist - Configure PASS 5.69 seconds > Make Dist - Make PASS 92.58 seconds > Build w/ext ELL - Configure PASS 9.32 seconds > Build w/ext ELL - Make PASS 217.51 seconds > > Details > ############################## > Test: CheckPatch - PASS > Desc: Run checkpatch.pl script with rule in .checkpatch.conf > > ############################## > Test: GitLint - PASS > Desc: Run gitlint with rule in .gitlint > > ############################## > Test: Prep - Setup ELL - PASS > Desc: Clone, build, and install ELL > > ############################## > Test: Build - Prep - PASS > Desc: Prepare environment for build > > ############################## > Test: Build - Configure - PASS > Desc: Configure the BlueZ source tree > > ############################## > Test: Build - Make - PASS > Desc: Build the BlueZ source tree > > ############################## > Test: Make Check - PASS > Desc: Run 'make check' > > ############################## > Test: Make Dist - PASS > Desc: Run 'make dist' and build the distribution tarball > > ############################## > Test: Make Dist - Configure - PASS > Desc: Configure the source from distribution tarball > > ############################## > Test: Make Dist - Make - PASS > Desc: Build the source from distribution tarball > > ############################## > Test: Build w/ext ELL - Configure - PASS > Desc: Configure BlueZ source with '--enable-external-ell' configuration > > ############################## > Test: Build w/ext ELL - Make - PASS > Desc: Build BlueZ source with '--enable-external-ell' configuration Applied, thanks.
diff --git a/.gitignore b/.gitignore index f4fb5db28..9c8393a81 100644 --- a/.gitignore +++ b/.gitignore @@ -47,23 +47,33 @@ tools/avinfo tools/bccmd tools/hwdb tools/ciptool +tools/ciptool.1 tools/hciattach +tools/hciattach.1 tools/hciconfig +tools/hciconfig.1 tools/hcieventmask tools/hcisecfilter tools/hcitool +tools/hcitool.1 tools/hcidump +tools/hcidump.1 tools/hid2hci +tools/hid2hci.1 tools/rfcomm +tools/rfcomm.1 tools/l2ping +tools/l2ping.1 tools/l2test tools/cltest tools/rctest +tools/rctest.1 tools/scotest tools/amptest tools/oobtest tools/advtest tools/sdptool +tools/sdptool.1 tools/avtest tools/bdaddr tools/bluemoon @@ -116,6 +126,7 @@ tools/rfcomm-tester tools/bnep-tester tools/userchan-tester tools/btattach +tools/btattach.1 tools/btconfig tools/btmgmt tools/btsnoop @@ -125,15 +136,18 @@ tools/btmon-logger tools/bluetooth-logger.service peripheral/btsensor monitor/btmon +monitor/btmon.1 emulator/btvirt emulator/b1ee emulator/hfp client/bluetoothctl tools/meshctl tools/mesh-cfgclient +tools/mesh-cfgtest mesh/bluetooth-meshd src/bluetoothd.8 +src/bluetoothd.rst src/bluetooth.service mesh/bluetooth-mesh.service @@ -157,8 +171,6 @@ unit/test-mesh-crypto unit/test-*.log unit/test-*.trs -doc/btmon.1 - android/system-emulator android/bluetoothd android/avdtptest
From: Tedd Ho-Jeong An <tedd.an@intel.com> This patch adds generated files like manpages and binaries to the ignore list so it won't show with 'git status'. --- .gitignore | 16 ++++++++++++++-- 1 file changed, 14 insertions(+), 2 deletions(-)