-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Build gpsim on Travis and deploy it to github releases.
- Loading branch information
Showing
2,113 changed files
with
84 additions
and
38,830 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,2 @@ | ||
build/** | ||
.vagrant |
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,12 @@ | ||
language: c++ | ||
sudo: true | ||
install: ./install.sh | ||
script: ./build.sh configure && ./build.sh make && ./build.sh package | ||
deploy: | ||
provider: releases | ||
api_key: | ||
secure: gU/+CafZlqD1ZY63M3rlBeS9FyrVaeLadgAoBl6Lu0ZFZG+NOt8DkOlbz+BVK3WV/tk7zBC9PEfUJu7S3TWnMxAVaCH0dGExqUQEljseqsjv4Bo5kvFF9+Ma2l5LILXw6jHpD5W74klE6y4EdUfr58OU55LDLNhUyFPbdvLxkKo= | ||
file: ./gpsim.tar.gz | ||
on: | ||
repo: WellDone/gpsim | ||
tags: true |
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 |
---|---|---|
@@ -1,2 +1,4 @@ | ||
# Patched GPSIM | ||
A locally patched version of the GNU PIC Simulator, GPSIM, to enable features needed for MoMo simulation until they are ready to be integrated upstream. | ||
|
||
"gpsim is a full-featured software simulator for Microchip PIC microcontrollers distributed under the GNU General Public License, Version 2 or higher, and some of it's libraries under GNU Lesser General Public License, Version 2 or higher." [gpsim.sourceforge.net](http://gpsim.sourceforge.net/) |
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,10 @@ | ||
VAGRANTFILE_API_VERSION = "2" | ||
|
||
Vagrant.configure(VAGRANTFILE_API_VERSION) do |config| | ||
config.vm.define "gpsim" do |gpsim| | ||
gpsim.vm.box = "hashicorp/precise64" | ||
gpsim.vm.box_url = "https://vagrantcloud.com/hashicorp/precise64/version/2/provider/virtualbox.box" | ||
|
||
gpsim.vm.provision "shell", inline: "/vagrant/install.sh" | ||
end | ||
end |
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
Oops, something went wrong.