File tree Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Expand file tree Collapse file tree 2 files changed +11
-3
lines changed Original file line number Diff line number Diff line change 7
7
- docker pull devkitpro/devkita64
8
8
script :
9
9
- docker run -e ENABLE_COMPATIBILITY_REPORTING -v $TRAVIS_BUILD_DIR:/NX-Shell
10
- devkitpro/devkita64 /bin/bash -ex /NX-Shell/.travis/.build.sh
10
+ ubuntu:18.10 /bin/bash -ex /NX-Shell/.travis/.build.sh
11
11
12
12
deploy :
13
13
provider : pages
Original file line number Diff line number Diff line change 1
1
#! /bin/bash -ex
2
2
3
- sudo apt-get update -y
4
- sudo apt-get -y install build-essential
3
+ apt-get update -y && apt-get -y install sudo
4
+ sudo apt-get -y install build-essential sudo wget libxml2
5
+
6
+ # install dkp deps
7
+ touch /trustdb.gpg
8
+ wget https://github.com/devkitPro/pacman/releases/download/devkitpro-pacman-1.0.1/devkitpro-pacman.deb
9
+ sudo dpkg -i devkitpro-pacman.deb
10
+
11
+ sudo dkp-pacman --noconfirm -Syu switch-dev switch-sdl2 switch-sdl2_gfx switch-sdl2_image switch-sdl2_ttf switch-opusfile switch-liblzma switch-libvorbisidec switch-mpg123 switch-flac
12
+
5
13
source /etc/profile.d/devkit-env.sh
6
14
export DEVKITA64=/opt/devkitpro/devkitA64
7
15
You can’t perform that action at this time.
0 commit comments