-
Notifications
You must be signed in to change notification settings - Fork 38
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Release 0.6
- Loading branch information
Showing
4 changed files
with
59 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
#!/bin/bash | ||
|
||
set -x | ||
set -e | ||
|
||
############################################################################ | ||
# Rileylink and similar | ||
############################################################################ | ||
# USA: | ||
make -f Makefile.uart1_alt2 | ||
make -f Makefile.uart1_alt2 CODE_LOC=0x400 CODE_LOC_NAME=CCTL | ||
# Worldwide: | ||
make -f Makefile.uart1_alt2 RADIO_LOCALE=WW | ||
make -f Makefile.uart1_alt2 CODE_LOC=0x400 CODE_LOC_NAME=CCTL RADIO_LOCALE=WW | ||
|
||
############################################################################ | ||
# ERF stick | ||
############################################################################ | ||
# USA: | ||
make -f Makefile.uart0_alt1 BOARD_TYPE=SRF_ERF | ||
make -f Makefile.uart0_alt1 BOARD_TYPE=SRF_ERF CODE_LOC=0x400 CODE_LOC_NAME=CCTL | ||
# Worldwide: | ||
make -f Makefile.uart0_alt1 BOARD_TYPE=SRF_ERF RADIO_LOCALE=WW | ||
make -f Makefile.uart0_alt1 BOARD_TYPE=SRF_ERF CODE_LOC=0x400 CODE_LOC_NAME=CCTL RADIO_LOCALE=WW | ||
|
||
############################################################################ | ||
# TI stick | ||
############################################################################ | ||
# USA: | ||
make -f Makefile.usb_ep0 | ||
make -f Makefile.usb_ep0 CODE_LOC=0x1400 CODE_LOC_NAME=CCBOOTLOADER | ||
# Worldwide: | ||
make -f Makefile.usb_ep0 RADIO_LOCALE=WW | ||
make -f Makefile.usb_ep0 RADIO_LOCALE=WW CODE_LOC=0x1400 CODE_LOC_NAME=CCBOOTLOADER | ||
|
||
exit 0 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
machine: | ||
pre: | ||
- sudo apt-get install -y sdcc | ||
- go get github.com/tcnksm/ghr | ||
test: | ||
override: | ||
- ./build-all.sh | ||
|
||
deployment: | ||
release: | ||
branch: master | ||
commands: | ||
- mkdir -p output/`git describe --tags`/ | ||
- mv output/*/*.hex output/`git describe --tags`/ | ||
- cd output ; ghr -t $GITHUB_TOKEN -u $CIRCLE_PROJECT_USERNAME -r $CIRCLE_PROJECT_REPONAME --replace `git describe --tags` `git describe --tags`/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters