mirror of
https://github.com/Maschell/libutils.git
synced 2024-11-05 20:55:08 +01:00
37 lines
641 B
YAML
37 lines
641 B
YAML
language: c
|
|
sudo: false
|
|
|
|
os:
|
|
- linux
|
|
|
|
env:
|
|
global:
|
|
- DEVKITPRO=$HOME/devkitPro
|
|
- DEVKITPPC=${DEVKITPRO}/devkitPPC
|
|
- DEVKITTMP=${DEVKITPRO}/tmp
|
|
|
|
cache:
|
|
directories:
|
|
- ${DEVKITPRO}
|
|
|
|
addons:
|
|
apt:
|
|
packages:
|
|
- p7zip-full
|
|
|
|
before_install:
|
|
- wget https://raw.githubusercontent.com/Maschell/dynamic_libs/lib/other/devkitPPCupdatePPCr29.pl
|
|
- mkdir -p $DEVKITTMP
|
|
- cd $DEVKITTMP
|
|
- git clone https://github.com/Maschell/dynamic_libs.git -b lib
|
|
|
|
install:
|
|
- perl devkitPPCupdatePPCr29.pl
|
|
- cd $DEVKITTMP/dynamic_libs
|
|
- 7z x -y ./libs/portlibs.zip -o${DEVKITPRO}
|
|
- make
|
|
- make install
|
|
|
|
script:
|
|
- make
|
|
|