rdz_ttgo_sonde/.travis/push.sh

67 wiersze
3.2 KiB
Bash
Czysty Zwykły widok Historia

v0.5c: travis continuous integration Squashed commit of the following: commit 24dd1f4579215c342e74511a315e093749b34612 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Sun Apr 28 22:14:55 2019 +0200 travis ci commit 1062e55bd7c19b2423170c4cc2ca12b8f4956513 Author: Travis CI <travis@travis-ci.org> Date: Sun Apr 28 22:03:17 2019 +0200 travis ci commit acaf7f6a81dff18edc14ceba82862a551bc05431 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:43:04 2019 +0200 travis testing commit c357dbd71bff6e63968fe5e8bedb0a59f6472bed Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:28:46 2019 +0200 travis testing commit b4cc1dc18c46b99cf074363db29391398f636be8 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:24:27 2019 +0200 travis testing commit 43057631493ed6e167a00affc163fd112d3d68ad Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:20:06 2019 +0200 travis testing commit e4cce47863104b8f8a4140859213751d87f3ff88 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:17:07 2019 +0200 travis testing commit f51d09f1658b865bc73e1448b9c36edd87f1d849 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:11:16 2019 +0200 travis testing commit e0462c838157353223ef939d3a44851c397f94df Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 18:58:50 2019 +0200 scripts for image generation commit ed174f7617c14d6424bbf8799e57daace5494b33 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 18:17:27 2019 +0200 +skript for image generation
2019-04-28 20:16:19 +00:00
#!/bin/sh
setup_git() {
git config --global user.email "dl9rdz@darc.de"
git config --global user.name "dl9rdz (via Travis CI)"
}
generate_website_index() {
echo "<html><head>" > download.html
echo "<meta charset=\"UTF-8\"><meta name=\"viewport\" content=\"width=device-width, initial-scale=1\">" >> download.html
echo "<title>rdz_ttgo_sonde</title>" >> download.html
v0.6b: DL2MF pull request #8 from DL2MF and some minor local modifications - Configure and show launch site information for each frequency - mDNS (access your device with http://rdzsonde.local instead of IP address) - Wifi services (mDNS and UDP) work again also in wifi mode 3 - experimental OTA update support - Better button initialization, works now also with TTGO T-Beam Squashed commit of the following: commit 84566ec4dd957bf298266a7d47646688987d2525 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Fri May 3 14:07:39 2019 +0200 enable network services in all wifi modes commit 7cf4b116a67738b58531378432ae3550dacd8c7e Merge: 3ae104d b676149 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Fri May 3 13:34:35 2019 +0200 Merge branch 'p8' (pull request #8) into devel commit b6761498aad72ac2f4e6af47cca279fbc5d358bc Author: DL2MF <meinhard.guenther@gmail.com> Date: Fri May 3 13:07:08 2019 +0200 Fixed RX display line 1 commit 3ae104d10fb4602a5cdd50df22ec86cb035f8958 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Fri May 3 11:55:26 2019 +0200 + default AP name if networks.txt is missing commit c0fc4980c24ea0bbb8bcd9f9406a3bd4c40ff50f Author: DL2MF <meinhard.guenther@gmail.com> Date: Fri May 3 11:38:21 2019 +0200 Added launchsite info to scan and webinterface commit c259e75ce6874ad8256e83993ebd9e6201450bfb Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Fri May 3 08:15:33 2019 +0200 ...and update version info commit 2eaba4fe7e26158285e66519703086140cba7a34 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Fri May 3 07:53:21 2019 +0200 lokale IP per mDNS annoncieren (http://rdzsonde.local/) commit 1732f17cce35a7f260d8e044a30810a7995d2c60 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Wed May 1 19:21:29 2019 +0200 fix travis directory listing commit dc16c9fa07f694ce5b0559008e1663c8d82cad5e Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Wed May 1 19:14:36 2019 +0200 explicitly set button pin as input commit 8bd087a9f016a6b093d58ea5e696f0c721ea0ffe Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Wed May 1 00:27:17 2019 +0200 playing around with OTA updates
2019-05-03 12:11:18 +00:00
echo '<link rel="stylesheet" href="/assets/css/style.css?v=a43710928bb200926b87aed147b540673ccb0378">' >> download.html
echo "</head><body>" >> download.html
echo '<div class="wrapper"><header><h1><a href="https://dl9rdz.github.io/rdz_ttgo_sonde/">rdz_ttgo_sonde</a></h1><p></p>' >> download.html
echo '<p class="view"><a href="https://github.com/dl9rdz/rdz_ttgo_sonde">View the Project on GitHub <small>dl9rdz/rdz_ttgo_sonde</small></a></p>' >> download.html
echo '</header><section><h1 id="rdz_ttgo_sonde">rdz_ttgo_sonde</h1>' >> download.html
echo "<h2>Master repository</h2><ul>" >> download.html
v0.5c: travis continuous integration Squashed commit of the following: commit 24dd1f4579215c342e74511a315e093749b34612 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Sun Apr 28 22:14:55 2019 +0200 travis ci commit 1062e55bd7c19b2423170c4cc2ca12b8f4956513 Author: Travis CI <travis@travis-ci.org> Date: Sun Apr 28 22:03:17 2019 +0200 travis ci commit acaf7f6a81dff18edc14ceba82862a551bc05431 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:43:04 2019 +0200 travis testing commit c357dbd71bff6e63968fe5e8bedb0a59f6472bed Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:28:46 2019 +0200 travis testing commit b4cc1dc18c46b99cf074363db29391398f636be8 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:24:27 2019 +0200 travis testing commit 43057631493ed6e167a00affc163fd112d3d68ad Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:20:06 2019 +0200 travis testing commit e4cce47863104b8f8a4140859213751d87f3ff88 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:17:07 2019 +0200 travis testing commit f51d09f1658b865bc73e1448b9c36edd87f1d849 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:11:16 2019 +0200 travis testing commit e0462c838157353223ef939d3a44851c397f94df Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 18:58:50 2019 +0200 scripts for image generation commit ed174f7617c14d6424bbf8799e57daace5494b33 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 18:17:27 2019 +0200 +skript for image generation
2019-04-28 20:16:19 +00:00
for i in `ls master`; do
TS=`git log master/$i | grep "Date:" | head -1 | awk '{$1="";$2="";$7="";print substr($0,3,length($0)-3)}'`
if [ -z "$TS" ]; then TS=`date`; fi
echo "<li><a href=\"master/$i\">$i</a> ($TS)</li>\n" >> download.html;
done
echo "</ul><h2>Development repository</h2><ul>" >> download.html
v0.5c: travis continuous integration Squashed commit of the following: commit 24dd1f4579215c342e74511a315e093749b34612 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Sun Apr 28 22:14:55 2019 +0200 travis ci commit 1062e55bd7c19b2423170c4cc2ca12b8f4956513 Author: Travis CI <travis@travis-ci.org> Date: Sun Apr 28 22:03:17 2019 +0200 travis ci commit acaf7f6a81dff18edc14ceba82862a551bc05431 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:43:04 2019 +0200 travis testing commit c357dbd71bff6e63968fe5e8bedb0a59f6472bed Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:28:46 2019 +0200 travis testing commit b4cc1dc18c46b99cf074363db29391398f636be8 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:24:27 2019 +0200 travis testing commit 43057631493ed6e167a00affc163fd112d3d68ad Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:20:06 2019 +0200 travis testing commit e4cce47863104b8f8a4140859213751d87f3ff88 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:17:07 2019 +0200 travis testing commit f51d09f1658b865bc73e1448b9c36edd87f1d849 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:11:16 2019 +0200 travis testing commit e0462c838157353223ef939d3a44851c397f94df Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 18:58:50 2019 +0200 scripts for image generation commit ed174f7617c14d6424bbf8799e57daace5494b33 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 18:17:27 2019 +0200 +skript for image generation
2019-04-28 20:16:19 +00:00
for i in `ls devel`; do
TS=`git log devel/$i | grep "Date:" | head -1 | awk '{$1="";$2="";$7="";print substr($0,3,length($0)-3)}'`
v0.6b: DL2MF pull request #8 from DL2MF and some minor local modifications - Configure and show launch site information for each frequency - mDNS (access your device with http://rdzsonde.local instead of IP address) - Wifi services (mDNS and UDP) work again also in wifi mode 3 - experimental OTA update support - Better button initialization, works now also with TTGO T-Beam Squashed commit of the following: commit 84566ec4dd957bf298266a7d47646688987d2525 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Fri May 3 14:07:39 2019 +0200 enable network services in all wifi modes commit 7cf4b116a67738b58531378432ae3550dacd8c7e Merge: 3ae104d b676149 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Fri May 3 13:34:35 2019 +0200 Merge branch 'p8' (pull request #8) into devel commit b6761498aad72ac2f4e6af47cca279fbc5d358bc Author: DL2MF <meinhard.guenther@gmail.com> Date: Fri May 3 13:07:08 2019 +0200 Fixed RX display line 1 commit 3ae104d10fb4602a5cdd50df22ec86cb035f8958 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Fri May 3 11:55:26 2019 +0200 + default AP name if networks.txt is missing commit c0fc4980c24ea0bbb8bcd9f9406a3bd4c40ff50f Author: DL2MF <meinhard.guenther@gmail.com> Date: Fri May 3 11:38:21 2019 +0200 Added launchsite info to scan and webinterface commit c259e75ce6874ad8256e83993ebd9e6201450bfb Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Fri May 3 08:15:33 2019 +0200 ...and update version info commit 2eaba4fe7e26158285e66519703086140cba7a34 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Fri May 3 07:53:21 2019 +0200 lokale IP per mDNS annoncieren (http://rdzsonde.local/) commit 1732f17cce35a7f260d8e044a30810a7995d2c60 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Wed May 1 19:21:29 2019 +0200 fix travis directory listing commit dc16c9fa07f694ce5b0559008e1663c8d82cad5e Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Wed May 1 19:14:36 2019 +0200 explicitly set button pin as input commit 8bd087a9f016a6b093d58ea5e696f0c721ea0ffe Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Wed May 1 00:27:17 2019 +0200 playing around with OTA updates
2019-05-03 12:11:18 +00:00
if [ -z "$TS" ]; then TS=`date`; fi
v0.5c: travis continuous integration Squashed commit of the following: commit 24dd1f4579215c342e74511a315e093749b34612 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Sun Apr 28 22:14:55 2019 +0200 travis ci commit 1062e55bd7c19b2423170c4cc2ca12b8f4956513 Author: Travis CI <travis@travis-ci.org> Date: Sun Apr 28 22:03:17 2019 +0200 travis ci commit acaf7f6a81dff18edc14ceba82862a551bc05431 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:43:04 2019 +0200 travis testing commit c357dbd71bff6e63968fe5e8bedb0a59f6472bed Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:28:46 2019 +0200 travis testing commit b4cc1dc18c46b99cf074363db29391398f636be8 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:24:27 2019 +0200 travis testing commit 43057631493ed6e167a00affc163fd112d3d68ad Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:20:06 2019 +0200 travis testing commit e4cce47863104b8f8a4140859213751d87f3ff88 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:17:07 2019 +0200 travis testing commit f51d09f1658b865bc73e1448b9c36edd87f1d849 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:11:16 2019 +0200 travis testing commit e0462c838157353223ef939d3a44851c397f94df Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 18:58:50 2019 +0200 scripts for image generation commit ed174f7617c14d6424bbf8799e57daace5494b33 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 18:17:27 2019 +0200 +skript for image generation
2019-04-28 20:16:19 +00:00
echo "<li><a href=\"devel/$i\">$i</a> ($TS)</li>\n" >> download.html;
done
echo "</ul>
<br>
<p>Last latter/number of version number indicate SPIFFS file system version. If the first (upper-case)
letter has changed, then this version is incompabible with prevision versions and you have to flash
the full image. If the second part (number) has changed, then this version has some changes
(e.g. internal web page layout, LCD/TFT display layout) in the file system which you will not get with
a code-only (OTA or flashing update.bin) update, but it should not break anything.</p>
</section></body></html>" >> download.html
v0.5c: travis continuous integration Squashed commit of the following: commit 24dd1f4579215c342e74511a315e093749b34612 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Sun Apr 28 22:14:55 2019 +0200 travis ci commit 1062e55bd7c19b2423170c4cc2ca12b8f4956513 Author: Travis CI <travis@travis-ci.org> Date: Sun Apr 28 22:03:17 2019 +0200 travis ci commit acaf7f6a81dff18edc14ceba82862a551bc05431 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:43:04 2019 +0200 travis testing commit c357dbd71bff6e63968fe5e8bedb0a59f6472bed Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:28:46 2019 +0200 travis testing commit b4cc1dc18c46b99cf074363db29391398f636be8 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:24:27 2019 +0200 travis testing commit 43057631493ed6e167a00affc163fd112d3d68ad Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:20:06 2019 +0200 travis testing commit e4cce47863104b8f8a4140859213751d87f3ff88 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:17:07 2019 +0200 travis testing commit f51d09f1658b865bc73e1448b9c36edd87f1d849 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:11:16 2019 +0200 travis testing commit e0462c838157353223ef939d3a44851c397f94df Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 18:58:50 2019 +0200 scripts for image generation commit ed174f7617c14d6424bbf8799e57daace5494b33 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 18:17:27 2019 +0200 +skript for image generation
2019-04-28 20:16:19 +00:00
git add download.html
git commit --amend --message "Travis build: $TRAVIS_BUILD_NUMBER"
v0.5c: travis continuous integration Squashed commit of the following: commit 24dd1f4579215c342e74511a315e093749b34612 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Sun Apr 28 22:14:55 2019 +0200 travis ci commit 1062e55bd7c19b2423170c4cc2ca12b8f4956513 Author: Travis CI <travis@travis-ci.org> Date: Sun Apr 28 22:03:17 2019 +0200 travis ci commit acaf7f6a81dff18edc14ceba82862a551bc05431 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:43:04 2019 +0200 travis testing commit c357dbd71bff6e63968fe5e8bedb0a59f6472bed Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:28:46 2019 +0200 travis testing commit b4cc1dc18c46b99cf074363db29391398f636be8 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:24:27 2019 +0200 travis testing commit 43057631493ed6e167a00affc163fd112d3d68ad Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:20:06 2019 +0200 travis testing commit e4cce47863104b8f8a4140859213751d87f3ff88 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:17:07 2019 +0200 travis testing commit f51d09f1658b865bc73e1448b9c36edd87f1d849 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:11:16 2019 +0200 travis testing commit e0462c838157353223ef939d3a44851c397f94df Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 18:58:50 2019 +0200 scripts for image generation commit ed174f7617c14d6424bbf8799e57daace5494b33 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 18:17:27 2019 +0200 +skript for image generation
2019-04-28 20:16:19 +00:00
}
commit_website_files() {
BRANCH=$TRAVIS_BRANCH
VERSION=`cat RX_FSK/version.h | grep version_id | egrep -o '".*"' | sed 's/"//g' | sed 's/ /_/g'`
FSMAJOR=`cat RX_FSK/version.h | grep SPIFFS_MAJOR | perl -e '$_=<>;print /=(.*);/?chr($1+64):""'`
FSMINOR=`cat RX_FSK/version.h | grep SPIFFS_MINOR | perl -e '$_=<>;print /=(.*);/?$1:""'`
VERSION=$VERSION-$FSMAJOR$FSMINOR
MYPATH=$PWD
v0.5c: travis continuous integration Squashed commit of the following: commit 24dd1f4579215c342e74511a315e093749b34612 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Sun Apr 28 22:14:55 2019 +0200 travis ci commit 1062e55bd7c19b2423170c4cc2ca12b8f4956513 Author: Travis CI <travis@travis-ci.org> Date: Sun Apr 28 22:03:17 2019 +0200 travis ci commit acaf7f6a81dff18edc14ceba82862a551bc05431 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:43:04 2019 +0200 travis testing commit c357dbd71bff6e63968fe5e8bedb0a59f6472bed Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:28:46 2019 +0200 travis testing commit b4cc1dc18c46b99cf074363db29391398f636be8 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:24:27 2019 +0200 travis testing commit 43057631493ed6e167a00affc163fd112d3d68ad Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:20:06 2019 +0200 travis testing commit e4cce47863104b8f8a4140859213751d87f3ff88 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:17:07 2019 +0200 travis testing commit f51d09f1658b865bc73e1448b9c36edd87f1d849 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:11:16 2019 +0200 travis testing commit e0462c838157353223ef939d3a44851c397f94df Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 18:58:50 2019 +0200 scripts for image generation commit ed174f7617c14d6424bbf8799e57daace5494b33 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 18:17:27 2019 +0200 +skript for image generation
2019-04-28 20:16:19 +00:00
echo "On branch $BRANCH"
echo "Version $VERSION"
cd /tmp
git clone https://github.com/dl9rdz/rdz_ttgo_sonde.git -b gh-pages
cd rdz_ttgo_sonde
2019-04-28 22:24:15 +00:00
mkdir -p master
mkdir -p devel
cp ${MYPATH}/out.bin ${BRANCH}/${VERSION}-full.bin
v0.5c: travis continuous integration Squashed commit of the following: commit 24dd1f4579215c342e74511a315e093749b34612 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Sun Apr 28 22:14:55 2019 +0200 travis ci commit 1062e55bd7c19b2423170c4cc2ca12b8f4956513 Author: Travis CI <travis@travis-ci.org> Date: Sun Apr 28 22:03:17 2019 +0200 travis ci commit acaf7f6a81dff18edc14ceba82862a551bc05431 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:43:04 2019 +0200 travis testing commit c357dbd71bff6e63968fe5e8bedb0a59f6472bed Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:28:46 2019 +0200 travis testing commit b4cc1dc18c46b99cf074363db29391398f636be8 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:24:27 2019 +0200 travis testing commit 43057631493ed6e167a00affc163fd112d3d68ad Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:20:06 2019 +0200 travis testing commit e4cce47863104b8f8a4140859213751d87f3ff88 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:17:07 2019 +0200 travis testing commit f51d09f1658b865bc73e1448b9c36edd87f1d849 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:11:16 2019 +0200 travis testing commit e0462c838157353223ef939d3a44851c397f94df Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 18:58:50 2019 +0200 scripts for image generation commit ed174f7617c14d6424bbf8799e57daace5494b33 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 18:17:27 2019 +0200 +skript for image generation
2019-04-28 20:16:19 +00:00
git add ${BRANCH}/${VERSION}-full.bin
v0.6b: DL2MF pull request #8 from DL2MF and some minor local modifications - Configure and show launch site information for each frequency - mDNS (access your device with http://rdzsonde.local instead of IP address) - Wifi services (mDNS and UDP) work again also in wifi mode 3 - experimental OTA update support - Better button initialization, works now also with TTGO T-Beam Squashed commit of the following: commit 84566ec4dd957bf298266a7d47646688987d2525 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Fri May 3 14:07:39 2019 +0200 enable network services in all wifi modes commit 7cf4b116a67738b58531378432ae3550dacd8c7e Merge: 3ae104d b676149 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Fri May 3 13:34:35 2019 +0200 Merge branch 'p8' (pull request #8) into devel commit b6761498aad72ac2f4e6af47cca279fbc5d358bc Author: DL2MF <meinhard.guenther@gmail.com> Date: Fri May 3 13:07:08 2019 +0200 Fixed RX display line 1 commit 3ae104d10fb4602a5cdd50df22ec86cb035f8958 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Fri May 3 11:55:26 2019 +0200 + default AP name if networks.txt is missing commit c0fc4980c24ea0bbb8bcd9f9406a3bd4c40ff50f Author: DL2MF <meinhard.guenther@gmail.com> Date: Fri May 3 11:38:21 2019 +0200 Added launchsite info to scan and webinterface commit c259e75ce6874ad8256e83993ebd9e6201450bfb Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Fri May 3 08:15:33 2019 +0200 ...and update version info commit 2eaba4fe7e26158285e66519703086140cba7a34 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Fri May 3 07:53:21 2019 +0200 lokale IP per mDNS annoncieren (http://rdzsonde.local/) commit 1732f17cce35a7f260d8e044a30810a7995d2c60 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Wed May 1 19:21:29 2019 +0200 fix travis directory listing commit dc16c9fa07f694ce5b0559008e1663c8d82cad5e Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Wed May 1 19:14:36 2019 +0200 explicitly set button pin as input commit 8bd087a9f016a6b093d58ea5e696f0c721ea0ffe Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Wed May 1 00:27:17 2019 +0200 playing around with OTA updates
2019-05-03 12:11:18 +00:00
cp ${MYPATH}/build/RX_FSK.ino.bin ${BRANCH}/update.ino.bin
git add ${BRANCH}/update.ino.bin
git commit --message "Travis build: $TRAVIS_BUILD_NUMBER"
v0.5c: travis continuous integration Squashed commit of the following: commit 24dd1f4579215c342e74511a315e093749b34612 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Sun Apr 28 22:14:55 2019 +0200 travis ci commit 1062e55bd7c19b2423170c4cc2ca12b8f4956513 Author: Travis CI <travis@travis-ci.org> Date: Sun Apr 28 22:03:17 2019 +0200 travis ci commit acaf7f6a81dff18edc14ceba82862a551bc05431 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:43:04 2019 +0200 travis testing commit c357dbd71bff6e63968fe5e8bedb0a59f6472bed Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:28:46 2019 +0200 travis testing commit b4cc1dc18c46b99cf074363db29391398f636be8 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:24:27 2019 +0200 travis testing commit 43057631493ed6e167a00affc163fd112d3d68ad Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:20:06 2019 +0200 travis testing commit e4cce47863104b8f8a4140859213751d87f3ff88 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:17:07 2019 +0200 travis testing commit f51d09f1658b865bc73e1448b9c36edd87f1d849 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:11:16 2019 +0200 travis testing commit e0462c838157353223ef939d3a44851c397f94df Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 18:58:50 2019 +0200 scripts for image generation commit ed174f7617c14d6424bbf8799e57daace5494b33 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 18:17:27 2019 +0200 +skript for image generation
2019-04-28 20:16:19 +00:00
}
upload_files() {
git remote add origin-pages https://${GITHUB_API_KEY}@github.com/dl9rdz/rdz_ttgo_sonde.git > /dev/null 2>&1
git push --quiet --set-upstream origin-pages gh-pages
v0.5c: travis continuous integration Squashed commit of the following: commit 24dd1f4579215c342e74511a315e093749b34612 Author: Hansi, dl9rdz <dl9rdz@darc.de> Date: Sun Apr 28 22:14:55 2019 +0200 travis ci commit 1062e55bd7c19b2423170c4cc2ca12b8f4956513 Author: Travis CI <travis@travis-ci.org> Date: Sun Apr 28 22:03:17 2019 +0200 travis ci commit acaf7f6a81dff18edc14ceba82862a551bc05431 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:43:04 2019 +0200 travis testing commit c357dbd71bff6e63968fe5e8bedb0a59f6472bed Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:28:46 2019 +0200 travis testing commit b4cc1dc18c46b99cf074363db29391398f636be8 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:24:27 2019 +0200 travis testing commit 43057631493ed6e167a00affc163fd112d3d68ad Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:20:06 2019 +0200 travis testing commit e4cce47863104b8f8a4140859213751d87f3ff88 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:17:07 2019 +0200 travis testing commit f51d09f1658b865bc73e1448b9c36edd87f1d849 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 19:11:16 2019 +0200 travis testing commit e0462c838157353223ef939d3a44851c397f94df Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 18:58:50 2019 +0200 scripts for image generation commit ed174f7617c14d6424bbf8799e57daace5494b33 Author: Hans P. Reiser <hr@sec.uni-passau.de> Date: Sun Apr 28 18:17:27 2019 +0200 +skript for image generation
2019-04-28 20:16:19 +00:00
}
setup_git
commit_website_files
generate_website_index
upload_files