Skip to content

Commit c276b43

Browse files
authored
Switch to ps2homebrew Docker image
1 parent 0d6f884 commit c276b43

File tree

1 file changed

+4
-30
lines changed

1 file changed

+4
-30
lines changed

.github/workflows/compilation.yml

+4-30
Original file line numberDiff line numberDiff line change
@@ -10,22 +10,15 @@ on:
1010
jobs:
1111
build:
1212
runs-on: ubuntu-latest
13-
container: ps2dev/ps2dev:latest
13+
container: ghcr.io/ps2homebrew/ps2homebrew:main
1414
steps:
15-
- name: Install dependencies
16-
run: |
17-
apk add build-base git zip gawk python3 py3-pip bash
18-
1915
- name: git checkout
2016
uses: actions/checkout@v3
2117

2218
- run: |
2319
git config --global --add safe.directory "$GITHUB_WORKSPACE"
2420
git fetch --prune --unshallow
2521
26-
- name: Install Python packages
27-
run: pip3 install -r requirements.txt
28-
2922
- name: Compile -> make clean release
3023
run: make --trace clean release
3124

@@ -60,21 +53,15 @@ jobs:
6053
igs: [IGS=0, IGS=1]
6154
t10k: [DTL_T10000=0, DTL_T10000=1]
6255
runs-on: ubuntu-latest
63-
container: ps2dev/ps2dev:latest
56+
container: ghcr.io/ps2homebrew/ps2homebrew:main
6457
steps:
65-
- name: Install dependencies
66-
run: apk add build-base git zip gawk python3 py3-pip bash
67-
6858
- name: git checkout
6959
uses: actions/checkout@v3
7060

7161
- run: |
7262
git config --global --add safe.directory "$GITHUB_WORKSPACE"
7363
git fetch --prune --unshallow
7464
75-
- name: Install Python packages
76-
run: pip3 install -r requirements.txt
77-
7865
- name: Get version
7966
run: |
8067
echo "OPL_VERSION=$(make oplversion)" >> $GITHUB_ENV
@@ -95,22 +82,15 @@ jobs:
9582

9683
build-lang:
9784
runs-on: ubuntu-latest
98-
container: ps2dev/ps2dev:latest
85+
container: ghcr.io/ps2homebrew/ps2homebrew:main
9986
steps:
100-
- name: Install dependencies
101-
run: |
102-
apk add build-base git zip gawk python3 py3-pip bash
103-
10487
- name: git checkout
10588
uses: actions/checkout@v3
10689

10790
- run: |
10891
git config --global --add safe.directory "$GITHUB_WORKSPACE"
10992
git fetch --prune --unshallow
11093
111-
- name: Install Python packages
112-
run: pip3 install -r requirements.txt
113-
11494
- name: Compile -> make download_lng languages
11595
run: make --trace download_lng languages
11696

@@ -131,21 +111,15 @@ jobs:
131111
matrix:
132112
debug: [debug, iopcore_debug, ingame_debug, deci2_debug, eesio_debug]
133113
runs-on: ubuntu-latest
134-
container: ps2dev/ps2dev:latest
114+
container: ghcr.io/ps2homebrew/ps2homebrew:main
135115
steps:
136-
- name: Install dependencies
137-
run: apk add build-base git zip gawk python3 py3-pip bash
138-
139116
- name: git checkout
140117
uses: actions/checkout@v3
141118

142119
- run: |
143120
git config --global --add safe.directory "$GITHUB_WORKSPACE"
144121
git fetch --prune --unshallow
145122
146-
- name: Install Python packages
147-
run: pip3 install -r requirements.txt
148-
149123
- name: Get version
150124
run: |
151125
echo "OPL_VERSION=$(make oplversion)" >> $GITHUB_ENV

0 commit comments

Comments
 (0)