10
10
jobs :
11
11
build :
12
12
runs-on : ubuntu-latest
13
- container : ps2dev/ps2dev:latest
13
+ container : ghcr.io/ps2homebrew/ps2homebrew:main
14
14
steps :
15
- - name : Install dependencies
16
- run : |
17
- apk add build-base git zip gawk python3 py3-pip bash
18
-
19
15
- name : git checkout
20
16
uses : actions/checkout@v3
21
17
22
18
- run : |
23
19
git config --global --add safe.directory "$GITHUB_WORKSPACE"
24
20
git fetch --prune --unshallow
25
21
26
- - name : Install Python packages
27
- run : pip3 install -r requirements.txt
28
-
29
22
- name : Compile -> make clean release
30
23
run : make --trace clean release
31
24
@@ -60,21 +53,15 @@ jobs:
60
53
igs : [IGS=0, IGS=1]
61
54
t10k : [DTL_T10000=0, DTL_T10000=1]
62
55
runs-on : ubuntu-latest
63
- container : ps2dev/ps2dev:latest
56
+ container : ghcr.io/ps2homebrew/ps2homebrew:main
64
57
steps :
65
- - name : Install dependencies
66
- run : apk add build-base git zip gawk python3 py3-pip bash
67
-
68
58
- name : git checkout
69
59
uses : actions/checkout@v3
70
60
71
61
- run : |
72
62
git config --global --add safe.directory "$GITHUB_WORKSPACE"
73
63
git fetch --prune --unshallow
74
64
75
- - name : Install Python packages
76
- run : pip3 install -r requirements.txt
77
-
78
65
- name : Get version
79
66
run : |
80
67
echo "OPL_VERSION=$(make oplversion)" >> $GITHUB_ENV
@@ -95,22 +82,15 @@ jobs:
95
82
96
83
build-lang :
97
84
runs-on : ubuntu-latest
98
- container : ps2dev/ps2dev:latest
85
+ container : ghcr.io/ps2homebrew/ps2homebrew:main
99
86
steps :
100
- - name : Install dependencies
101
- run : |
102
- apk add build-base git zip gawk python3 py3-pip bash
103
-
104
87
- name : git checkout
105
88
uses : actions/checkout@v3
106
89
107
90
- run : |
108
91
git config --global --add safe.directory "$GITHUB_WORKSPACE"
109
92
git fetch --prune --unshallow
110
93
111
- - name : Install Python packages
112
- run : pip3 install -r requirements.txt
113
-
114
94
- name : Compile -> make download_lng languages
115
95
run : make --trace download_lng languages
116
96
@@ -131,21 +111,15 @@ jobs:
131
111
matrix :
132
112
debug : [debug, iopcore_debug, ingame_debug, deci2_debug, eesio_debug]
133
113
runs-on : ubuntu-latest
134
- container : ps2dev/ps2dev:latest
114
+ container : ghcr.io/ps2homebrew/ps2homebrew:main
135
115
steps :
136
- - name : Install dependencies
137
- run : apk add build-base git zip gawk python3 py3-pip bash
138
-
139
116
- name : git checkout
140
117
uses : actions/checkout@v3
141
118
142
119
- run : |
143
120
git config --global --add safe.directory "$GITHUB_WORKSPACE"
144
121
git fetch --prune --unshallow
145
122
146
- - name : Install Python packages
147
- run : pip3 install -r requirements.txt
148
-
149
123
- name : Get version
150
124
run : |
151
125
echo "OPL_VERSION=$(make oplversion)" >> $GITHUB_ENV
0 commit comments