Skip to content

Commit

Permalink
Linguist update (#10)
Browse files Browse the repository at this point in the history
  • Loading branch information
noirscape committed Apr 13, 2018
1 parent d0c8753 commit 7e3d613
Show file tree
Hide file tree
Showing 2 changed files with 47 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitattributes
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
*.h linguist-language=C

45 changes: 45 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
# Source: https://github.com/Lectem/TravisCI-for-devkitPro/blob/master/devkitARM-latestctrulib.travis.yml
language: c
sudo: false
dist: trusty

notifications:
email: false

before_install:
- wget http://sourceforge.net/projects/devkitpro/files/Automated%20Installer/devkitARMupdate.pl
- export DEVKITPRO=/home/travis/devkitPro
- export DEVKITARM=${DEVKITPRO}/devkitARM
- git clone --recursive https://github.com/Steveice10/bannertool.git
- git clone https://github.com/profi200/Project_CTR.git
- mkdir -p /home/travis/bin
- export PATH=$PATH:/home/travis/bin

install:
- perl devkitARMupdate.pl
- cd bannertool
- make -j4
- cp -rf output/linux-x86_64/bannertool /home/travis/bin/
- cd ..
- cd Project_CTR/makerom
- make -j4
- cp -rf makerom /home/travis/bin/
- cd ../..

script:
- make

# Source: https://github.com/k3rn31p4nic/travis-ci-discord-webhook
after_success:
- wget https://raw.githubusercontent.com/k3rn31p4nic/travis-ci-discord-webhook/master/send.sh
- chmod +x send.sh
- ./send.sh success $WEBHOOK_URL
after_failure:
- wget https://raw.githubusercontent.com/k3rn31p4nic/travis-ci-discord-webhook/master/send.sh
- chmod +x send.sh
- ./send.sh failure $WEBHOOK_URL

cache:
directories:
- /home/travis/devKitPro/
- /home/travis/bin

0 comments on commit 7e3d613

Please sign in to comment.