-
Notifications
You must be signed in to change notification settings - Fork 0
98 lines (83 loc) · 2.73 KB
/
docker-image.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
name: Docker Image CI
on:
push:
branches: [ "master" ]
pull_request:
branches: [ "master" ]
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
runs-on: ubuntu-latest
container: ps2dev/ps2sdk
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- name: Get dependencies
run: |
apk add build-base binutils-dev git cmake xorriso assimp-dev musl-obstack-dev jsoncpp-dev
- name: Install openvcl/MASP
run: |
git clone https://github.com/nicholas477/openvcl.git dependencies/openvcl
cd dependencies/openvcl/contrib/masp
chmod +x ./configure && ./configure LIBS="-lobstack"
make install -j$(getconf _NPROCESSORS_ONLN)
cd ../../
make install -j$(getconf _NPROCESSORS_ONLN)
- name: Install ps2stuff
run: |
git clone https://github.com/ps2dev/ps2stuff.git dependencies/ps2stuff
cd dependencies/ps2stuff && make clean all install -j$(getconf _NPROCESSORS_ONLN)
- name: Install ps2gl
run: |
git clone https://github.com/nicholas477/ps2gl.git dependencies/ps2gl
cd dependencies/ps2gl && make clean all install -j$(getconf _NPROCESSORS_ONLN) DEBUG=1
cd glut && make clean all install -j$(getconf _NPROCESSORS_ONLN)
- 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 -j$(getconf _NPROCESSORS_ONLN)
- name: Install cxxopts
run: |
git clone https://github.com/artpaul/cxxopts.git dependencies/cxxopts
cd dependencies/cxxopts
mkdir -p build
cd build
cmake ..
make clean all install -j$(getconf _NPROCESSORS_ONLN)
- name: Compile egg-library
run: |
cd dependencies/egg-library
make clean all install -j$(getconf _NPROCESSORS_ONLN)
mkdir build
cd build
cmake ..
make clean all install -j$(getconf _NPROCESSORS_ONLN)
- name: Compile ps2-mesh-converter
run: |
cd tools/ps2-mesh-converter
mkdir -p build
cd build
cmake ..
make clean all install -j$(getconf _NPROCESSORS_ONLN)
- name: Compile ps2-manifest-generator
run: |
cd tools/ps2-manifest-generator
mkdir -p build
cd build
cmake ..
make clean all install -j$(getconf _NPROCESSORS_ONLN)
- name: Compile ps2 engine
run: |
make clean iso -j$(getconf _NPROCESSORS_ONLN)
- uses: actions/upload-artifact@v3
with:
name: test.iso
path: build/test.iso