Skip to content

Commit

Permalink
Inital travis support
Browse files Browse the repository at this point in the history
  • Loading branch information
B3n30 committed Aug 16, 2017
1 parent 0e7e8ee commit a8e3735
Show file tree
Hide file tree
Showing 5 changed files with 51 additions and 1 deletion.
9 changes: 9 additions & 0 deletions .travis-upload.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
#!/bin/sh

mkdir -p artifacts

mv shared_font/shared_font.app.romfs.h artifacts/shared_font/
mv shared_font/00000000.app.romfs artifacts/shared_font/
pwd
ls
7z a "artifacts/system_archives.7z" artifacts/*
35 changes: 35 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
language: python
python:
- '2.7'
compiler: gcc
dist: trusty

before_install:
- sudo add-apt-repository -y ppa:ubuntu-toolchain-r/test
- sudo apt-get update -qq
- sudo apt-get install -qq g++-6
- sudo update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-6 90
- sudo apt-get install libcurl4-gnutls-dev
- sudo apt-get install libcurl4-nss-dev

install:
- python --version
- pip install pillow
- pip install pypng

script:
- bash ./run.sh

after_success:
- bash ./.travis-upload.sh

deploy:
provider: releases
file_glob: true
api_key:
secure: UYn9enZoSaxrtLiwPQWejd0P/rSax1bXilEcxr21qZ60Cj+Xazi+Gy2dzmcUZUbOyV+l/SUqoUukiuA/dNbcP/UJJ7J8aG52NsopTi1N6QvmQo2oWQ7SWiTtOj506GTLSFIibu/q2SxLPmcqgzfRSWYGBBhodkC5ySmN501plh5KfKgPYaX5NuVjiBkfG2g4m5pL/34O86i9Iw5ICk6qqT05P6ntukyv61jb4h32g3biXYCarR7i3oeDLYR/T5rRhFD2YWUK5I8HOJdf34dqm4HgBjraRWIiNVqU9j2wCPhyNTpUx9WzoicHJ00pCcFe7j/ggu2SIgLUiA9EYuUcxyqnwdxGBkAOlZDb5bv60hgB/MZgqOgqmmtYpbVFgC8gUgphnkWRMUcDEoUQb8pmUFlFoCAInrSzauphRM2Q3mp2tPEnBGzk/bzPrJoZWhuUJRS1OSd5a3rtUyupqHCxqrgrvRtjyDxmCDe9ZiMSbNgzlX++U24iGTtjFoDT2N5yfqAau7K6Vrq/UFUIFiHiLwwGHnadZQFdbk6iqerBG01rjH5Rhn9Q+Y0Ic2PFhAKyutwTodSxdzkLIr/hI/pYb/7sdEdZb4CUTTCM6K4Ei1Y9SBvx8ddDG1y+APT3yV28whMlIGMaABDDFGGbGaoxdJ2607ZQwj12TO6a43KEd5s=
file:
- artifacts/system_archives.7z
skip_cleanup: true
on:
repo: B3n30/citra_system_archives
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
System Files for Citra
5 changes: 5 additions & 0 deletions run.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
#!/bin/sh

cd shared_font
./run.sh
cd ..
2 changes: 1 addition & 1 deletion shared_font/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
git clone --recursive https://github.com/dnasdw/3dstool
mkdir 3dstool/build
cd 3dstool/build
cmake ..
cmake -DUSE_DEP=OFF ..
make
cd ../..
cp ignore_3dstool.txt 3dstool/bin/Release/
Expand Down

0 comments on commit a8e3735

Please sign in to comment.