ci: Remove travis build config

This commit is contained in:
Joel16 2022-01-29 14:19:48 -05:00
parent 38011e534a
commit c7b7bc0ff0
3 changed files with 0 additions and 29 deletions

View File

@ -1,11 +0,0 @@
language: c++
dist: focal
before_install:
- sudo apt-get install make git-core cmake python -y
- export VITASDK=/usr/local/vitasdk
- export PATH=$VITASDK/bin:$PATH # add vitasdk tool to $PATH
- sh .travis/install_toolchain.sh
script:
- sh .travis/build.sh

View File

@ -1,7 +0,0 @@
#!/bin/sh
set -e
set -x
mkdir build
cd build
cmake ../ && make clean && make

View File

@ -1,11 +0,0 @@
#!/bin/sh
set -e
set -x
# Build and install VITASDK using VDPM
git clone https://github.com/vitasdk/vdpm
cd vdpm
./bootstrap-vitasdk.sh
./install-all.sh
cd ../
rm -rf vdpm