Files
-
hardware / bubblegum / bubblegum.brd
-
hardware / bubblegum / bubblegum.sch
-
hardware / hackrf-one / baseband.kicad_sch
-
hardware / hackrf-one / clock.kicad_sch
-
hardware / hackrf-one / frontend.kicad_sch
-
hardware / hackrf-one / hackrf-one.kicad_pcb
-
hardware / hackrf-one / hackrf-one.kicad_sch
-
hardware / hackrf-one / mcu.kicad_sch
-
hardware / jawbreaker / baseband.sch
-
hardware / jawbreaker / frontend.sch
-
hardware / jawbreaker / jawbreaker.brd
-
hardware / jawbreaker / jawbreaker.sch
-
hardware / jawbreaker / mcu.sch
-
hardware / jellybean / jellybean.brd
-
hardware / jellybean / jellybean.sch
-
hardware / lemondrop / lemondrop.brd
-
hardware / lemondrop / lemondrop.sch
-
hardware / licorice / licorice.brd
-
hardware / licorice / licorice.sch
-
hardware / LNA915 / LNA915.kicad_pcb
-
hardware / LNA915 / LNA915.sch
-
hardware / lollipop / lollipop.brd
-
hardware / lollipop / lollipop.sch
-
hardware / marzipan / baseband.sch
-
hardware / marzipan / frontend.sch
-
hardware / marzipan / marzipan.kicad_pcb
-
hardware / marzipan / marzipan.sch
-
hardware / marzipan / mcu.sch
-
hardware / neapolitan / baseband.sch
-
hardware / neapolitan / frontend.sch
-
hardware / neapolitan / mcu.sch
-
hardware / neapolitan / neapolitan.kicad_pcb
-
hardware / neapolitan / neapolitan.sch
-
hardware / operacake / operacake.kicad_pcb
-
hardware / operacake / operacake.sch
Last update 2 years 1 month
by
Gianpaolo Macario
Filestools | |
---|---|
.. | |
sgpio_debug | |
add-braces.sh | |
deploy-nightly.sh | |
reformat-source.sh |
deploy-nightly.sh#!/bin/bash PUBLICATION_BRANCH=master # set -x cd $HOME # Checkout the branch git clone --branch=$PUBLICATION_BRANCH https://${GITHUB_TOKEN}@github.com/${ARTEFACT_REPO}.git publish cd publish # Update pages cp $ARTEFACT_BASE/$BUILD_NAME.tar.xz . # Write index page cd $TRAVIS_BUILD_DIR COMMITS=`git log --oneline | awk '{print $1}'` cd $HOME/publish echo " <!DOCTYPE html PUBLIC \"-//W3C//DTD HTML 4.0 Transitional//EN\"> <html><head> <meta http-equiv=\"content-type\" content=\"text/html; charset=UTF-8\"> <title>HackRF Nightly Builds</title> </head> <body> <h2>HackRF Nightly Builds</h2> " > index.html for commit in $COMMITS; do FILENAME=`find . -maxdepth 1 -name "*-$commit.tar.xz"` if [ "$FILENAME" != "" ]; then FN=${FILENAME:2} echo "<a href=\"${ARTEFACT_URL}/$FN\">$FN</a><br />" >> index.html fi done echo " </body></html> " >> index.html # Commit and push latest version git add $BUILD_NAME.tar.xz index.html git config user.name "Travis" git config user.email "travis@travis-ci.org" git commit -m "Build products for $SHORT_COMMIT_HASH, built on $TRAVIS_OS_NAME, log: $TRAVIS_BUILD_WEB_URL" if [ "$?" != "0" ]; then echo "Looks like the commit failed" fi git push -fq origin $PUBLICATION_BRANCH