55 lines
2.5 KiB
Bash
Executable File
55 lines
2.5 KiB
Bash
Executable File
#!/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
|
|
echo '<link rel="stylesheet" href="/rdz_ttgo_sonde/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
|
|
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
|
|
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)}'`
|
|
echo "<li><a href=\"devel/$i\">$i</a> ($TS)</li>\n" >> download.html;
|
|
done
|
|
echo "</ul></section></body></html>" >> download.html
|
|
git add download.html
|
|
git commit --message "Travis build: $TRAVIS_BUILD_NUMBER"
|
|
}
|
|
commit_website_files() {
|
|
BRANCH=$TRAVIS_BRANCH
|
|
VERSION=`cat RX_FSK/version.h | tail -1 | egrep -o '".*"' | sed 's/"//g' | sed 's/ /_/g'`
|
|
MYPATH=$PWD
|
|
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
|
|
mkdir -p master
|
|
mkdir -p devel
|
|
cp ${MYPATH}/out.bin ${BRANCH}/${VERSION}-full.bin
|
|
git add ${BRANCH}/${VERSION}-full.bin
|
|
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"
|
|
}
|
|
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
|
|
}
|
|
setup_git
|
|
commit_website_files
|
|
generate_website_index
|
|
upload_files
|