Skip to content

Commit

Permalink
Automated generation of GUI strings and language files.
Browse files Browse the repository at this point in the history
Changed Makefile to simplify generation of object files from PNGs.
Changed Makefile to add header files as dependencies.
  • Loading branch information
jackmax committed Feb 6, 2022
1 parent dbe83b6 commit 54fd6da
Show file tree
Hide file tree
Showing 44 changed files with 13,962 additions and 822 deletions.
17 changes: 13 additions & 4 deletions .github/workflows/compilation.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,16 @@ jobs:
steps:
- name: Install dependencies
run: |
apk add build-base git zip gawk
apk add build-base git zip gawk python3 py3-pip
- name: git checkout
uses: actions/checkout@v2

- run: git fetch --prune --unshallow

- name: Install Python packages
run: pip3 install -r requirements.txt

- name: Compile -> make clean release
run: make --trace clean release

Expand Down Expand Up @@ -57,13 +60,16 @@ jobs:
container: ps2dev/ps2dev:latest
steps:
- name: Install dependencies
run: apk add build-base git zip gawk
run: apk add build-base git zip gawk python3 py3-pip

- name: git checkout
uses: actions/checkout@v2

- run: git fetch --prune --unshallow

- name: Install Python packages
run: pip3 install -r requirements.txt

- name: Get version
id: version
run: echo "::set-output name=version::$(make oplversion)"
Expand Down Expand Up @@ -91,13 +97,16 @@ jobs:
container: ps2dev/ps2dev:latest
steps:
- name: Install dependencies
run: apk add build-base git zip gawk
run: apk add build-base git zip gawk python3 py3-pip

- name: git checkout
uses: actions/checkout@v2

- run: git fetch --prune --unshallow

- name: Install Python packages
run: pip3 install -r requirements.txt

- name: Get version
id: version
run: echo "::set-output name=version::$(make oplversion)"
Expand Down Expand Up @@ -177,7 +186,7 @@ jobs:
OPNPS2LD-VARIANTS-${{ steps.version.outputs.version }}.7z
OPNPS2LD.7z
OPNPS2LD-VARIANTS.7z
- name: Upload pre-release to Mega
if: github.ref == 'refs/heads/master'
uses: Difegue/action-megacmd@master
Expand Down
Loading

0 comments on commit 54fd6da

Please sign in to comment.