Skip to content

Commit

Permalink
v0.6.5 Deploy tool updated and fixed some CI issues on registry
Browse files Browse the repository at this point in the history
  • Loading branch information
hpsaturn committed Jan 29, 2023
1 parent 561bc61 commit 1d95688
Show file tree
Hide file tree
Showing 5 changed files with 27 additions and 7 deletions.
24 changes: 22 additions & 2 deletions deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,31 @@ validate_branch () {
clean () {
rm -rf .pio
rm -rf examples/advanced_sensirion/.pio
rm -rf examples/ttgo_tdisplay_s3/.pio
rm -f $OUTPUT
}

runtest () {
current_dir=`pwd`
echo ""
echo "***********************************************"
echo "** TESTING: $2"
echo "***********************************************"
echo ""
cd $1
pio run -s
echo ""
echo "***********************************************"
echo "** TEST DONE ON: $2"
echo "***********************************************"
echo ""
cd $current_dir
}

runtests () {
pio run
cd examples/advanced_sensirion && pio run
runtest "examples/advanced_sensirion" "Advanced Sensirion"
runtest "examples/ttgo_tdisplay_s3" "TTGO T-Display S3"
runtest "./" "All architectures"
}

build () {
Expand All @@ -82,6 +101,7 @@ build () {
echo "***********************************************"
echo ""
md5sum $OUTPUT
du -hs $OUTPUT
echo ""
}

Expand Down
2 changes: 1 addition & 1 deletion doxygen.conf
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ PROJECT_NAME = "CanAirIO Sensors Library"
# could be handy for archiving the generated documentation or if some version
# control system is used.

PROJECT_NUMBER = 0.6.4
PROJECT_NUMBER = 0.6.5

# Using the PROJECT_BRIEF tag one can provide an optional one line description
# for a project that appears at the top of each page and should give viewer a
Expand Down
2 changes: 1 addition & 1 deletion library.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "CanAirIO Air Quality Sensors Library",
"version": "0.6.4",
"version": "0.6.5",
"homepage":"https://canair.io",
"keywords":
[
Expand Down
2 changes: 1 addition & 1 deletion library.properties
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
name=CanAirIO Air Quality Sensors Library
version=0.6.4
version=0.6.5
author=@hpsaturn, CanAirIO project <[email protected]>
maintainer=Antonio Vanegas <[email protected]>
url=https://github.com/kike-canaries/canairio_sensorlib
Expand Down
4 changes: 2 additions & 2 deletions src/Sensors.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@
#include <dht_nonblocking.h>
#endif

#define CSL_VERSION "0.6.4"
#define CSL_REVISION 372
#define CSL_VERSION "0.6.5"
#define CSL_REVISION 373

/***************************************************************
* S E T U P E S P 3 2 B O A R D S A N D F I E L D S
Expand Down

0 comments on commit 1d95688

Please sign in to comment.