Skip to content

Commit

Permalink
Merge branch 'master' of github.com:nicholas477/PS2HomebrewThing
Browse files Browse the repository at this point in the history
  • Loading branch information
EPICGameGuy committed Nov 22, 2023
2 parents 88d97fd + 8dfb54d commit 5b35c3a
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/docker-image.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Docker Image CI

on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]

jobs:
build:
runs-on: ubuntu-latest
container: ps2dev/ps2sdk

steps:
- uses: actions/checkout@v3
- name: Get dependencies
run: |
apk add build-base git cmake
- name: Install ps2stuff
run: |
git clone https://github.com/ps2dev/ps2stuff.git dependencies/ps2stuff
cd dependencies/ps2stuff && make clean all install
- name: Install ps2gl
run: |
git clone https://github.com/ps2dev/ps2gl.git dependencies/ps2gl
cd dependencies/ps2gl && make clean all install
- name: Install meshoptimizer
run: |
git clone https://github.com/zeux/meshoptimizer.git dependencies/meshoptimizer
cd dependencies/meshoptimizer
mkdir -p build
cd build
cmake ..
make clean all install
- name: Compile egg-library
run: |
cd dependencies/egg-library
make clean all install

0 comments on commit 5b35c3a

Please sign in to comment.