remove tyrav1 stuff

This commit is contained in:
h4570
2022-07-17 10:15:37 +02:00
parent 7f619ec829
commit 44c1ee4fe8
136 changed files with 0 additions and 30389 deletions
-60
View File
@@ -1,60 +0,0 @@
# Based on https://github.com/ps2dev/gsKit/blob/master/.github/workflows/compilation.yml
# Thanks fjtrujy!
name: CI
on:
push:
pull_request:
repository_dispatch:
types: [run_build]
jobs:
build:
runs-on: ubuntu-latest
container: ps2dev/ps2sdk-ports:latest
steps:
- uses: actions/checkout@v2
- name: Install dependencies
run: |
apk add build-base git
- name: Compile engine
working-directory: ./
env:
ZLIB: ${PS2SDK}/ports
LIBTIFF: ${PS2SDK}/ports
LIBJPEG: ${PS2SDK}/ports
LIBPNG: ${PS2SDK}/ports
TYRA: ${GITHUB_WORKSPACE}
run: |
make
- name: Compile unit test project
working-directory: ./
env:
TYRA: ${GITHUB_WORKSPACE}
run: |
make tests
- name: Compile cube project
working-directory: ./
env:
TYRA: ${GITHUB_WORKSPACE}
run: |
make cube
- name: Compile floors project
working-directory: ./
env:
TYRA: ${GITHUB_WORKSPACE}
run: |
make floors
- name: Compile dolphin project
working-directory: ./
env:
TYRA: ${GITHUB_WORKSPACE}
run: |
make dolphin