8000 more debug · smartcoder00/arduinoWebSockets@2110ad0 · GitHub
[go: up one dir, main page]

Skip to content

Commit 2110ad0

Browse files
committed
more debug
1 parent 04249a9 commit 2110ad0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -165,6 +165,7 @@ jobs:
165165
export DISPLAY=:1.0
166166
export PATH="$HOME/arduino_ide:$PATH"
167167
arduino --board $BOARD --save-prefs
168+
arduino --pref update.check=false --pref build.verbose=false --pref cache.enable=true --pref compiler.cache_core=true --pref compiler.warning_level=default --save-prefs
168169
arduino --get-pref sketchbook.path
169170
arduino --get-pref
170171

travis/common.sh

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/bin/bash
22

3-
set -ex
3+
set -x
44

55
function build_sketches()
66
{
@@ -31,10 +31,9 @@ function build_sketches()
3131

3232
function build_sketch()
3333
{
34-
set -e +x
3534
local arduino=$1
3635
local sketch=$2
37-
$arduino --verify $sketch;
36+
$arduino --verify --verbose $sketch;
3837
local result=$?
3938
if [ $result -ne 0 ]; then
4039
echo "Build failed ($sketch) build verbose..."

0 commit comments

Comments
 (0)
0