-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
51 additions
and
1 deletion.
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,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/* |
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,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 |
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 @@ | ||
System Files for Citra |
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,5 @@ | ||
#!/bin/sh | ||
|
||
cd shared_font | ||
./run.sh | ||
cd .. |
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