8000 Speed up CI builds with caching hacks by earlephilhower · Pull Request #5539 · esp8266/Arduino · GitHub
[go: up one dir, main page]

Skip to content

Speed up CI builds with caching hacks #5539

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 16 commits into from
Jan 5, 2019
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove old elf/bin/maps from build dir
  • Loading branch information
earlephilhower committed Jan 3, 2019
commit 5bfa5be067a123343bfb4efc1fa5dfc6bd817d71
3 changes: 1 addition & 2 deletions tests/common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ function build_sketches()
tail -2 $build_dir/build.options.json >> $build_dir/../build.options.json
fi

rm -rf $build_dir/sketch
rm -rf $build_dir/sketch $build_dir/*.bin $build_dir/*.map $build_dir/*.elf

if [ -e $cache_dir/core/*.a ]; then
mv $build_dir/../build.options.json $build_dir/build.options.json
Expand Down Expand Up @@ -101,7 +101,6 @@ function build_sketches()
cat build.log
fi
fi
cp build.log /tmp/build.log.1
rm build.log
print_size_info $build_dir/*.elf >>size.log
done
Expand Down
0