Skip to content
This repository has been archived by the owner on Aug 31, 2024. It is now read-only.

Commit

Permalink
Set CI build container to gkbmdz/ps2dev:latest
Browse files Browse the repository at this point in the history
  • Loading branch information
citronalco committed Sep 28, 2023
1 parent cf7215d commit 48df1d1
Showing 1 changed file with 16 additions and 16 deletions.
32 changes: 16 additions & 16 deletions .github/workflows/compilation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,11 @@ on:
jobs:
build:
runs-on: ubuntu-latest
container: ps2dev/ps2dev:latest
container: gkbmdz/ps2dev:latest
steps:
- name: Install dependencies
run: |
apk add build-base git zip gawk python3 py3-pip bash
apk add build-base git zip gawk python3 py3-pip bash py3-yaml
- name: git checkout
uses: actions/checkout@v3
Expand All @@ -22,8 +22,8 @@ jobs:
git config --global --add safe.directory "$GITHUB_WORKSPACE"
git fetch --prune --unshallow
- name: Install Python packages
run: pip3 install -r requirements.txt
# - name: Install Python packages
# run: pip3 install -r requirements.txt

- name: Compile -> make clean release
run: make --trace clean release
Expand Down Expand Up @@ -59,10 +59,10 @@ jobs:
igs: [IGS=0, IGS=1]
t10k: [DTL_T10000=0, DTL_T10000=1]
runs-on: ubuntu-latest
container: ps2dev/ps2dev:latest
container: gkbmdz/ps2dev:latest
steps:
- name: Install dependencies
run: apk add build-base git zip gawk python3 py3-pip bash
run: apk add build-base git zip gawk python3 py3-pip bash py3-yaml

- name: git checkout
uses: actions/checkout@v3
Expand All @@ -71,8 +71,8 @@ jobs:
git config --global --add safe.directory "$GITHUB_WORKSPACE"
git fetch --prune --unshallow
- name: Install Python packages
run: pip3 install -r requirements.txt
# - name: Install Python packages
# run: pip3 install -r requirements.txt

- name: Get version
id: version
Expand All @@ -94,11 +94,11 @@ jobs:

build-lang:
runs-on: ubuntu-latest
container: ps2dev/ps2dev:latest
container: gkbmdz/ps2dev:latest
steps:
- name: Install dependencies
run: |
apk add build-base git zip gawk python3 py3-pip bash
apk add build-base git zip gawk python3 py3-pip bash py3-yaml
- name: git checkout
uses: actions/checkout@v3
Expand All @@ -107,8 +107,8 @@ jobs:
git config --global --add safe.directory "$GITHUB_WORKSPACE"
git fetch --prune --unshallow
- name: Install Python packages
run: pip3 install -r requirements.txt
# - name: Install Python packages
# run: pip3 install -r requirements.txt

- name: Compile -> make download_lng languages
run: make --trace download_lng languages
Expand All @@ -130,10 +130,10 @@ jobs:
matrix:
debug: [debug, iopcore_debug, ingame_debug, deci2_debug] # eesio_debug broken
runs-on: ubuntu-latest
container: ps2dev/ps2dev:latest
container: gkbmdz/ps2dev:latest
steps:
- name: Install dependencies
run: apk add build-base git zip gawk python3 py3-pip bash
run: apk add build-base git zip gawk python3 py3-pip bash py3-yaml

- name: git checkout
uses: actions/checkout@v3
Expand All @@ -142,8 +142,8 @@ jobs:
git config --global --add safe.directory "$GITHUB_WORKSPACE"
git fetch --prune --unshallow
- name: Install Python packages
run: pip3 install -r requirements.txt
# - name: Install Python packages
# run: pip3 install -r requirements.txt

- name: Get version
id: version
Expand Down

0 comments on commit 48df1d1

Please sign in to comment.