Import project

Original repository: https://github.com/encounter/ww
This commit is contained in:
Luke Street
2023-09-10 00:42:26 -04:00
parent 81ac53f131
commit adb95b135c
3731 changed files with 481532 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
name: Build
on:
push:
pull_request:
jobs:
build:
runs-on: ubuntu-latest
container: ghcr.io/encounter/ww-build:main
strategy:
fail-fast: false
matrix:
version: [GZLE01, GZLP01, GZLJ01]
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Git config
run: git config --global --add safe.directory "$GITHUB_WORKSPACE"
- name: Prepare
run: cp -R /orig/${{matrix.version}} orig
- name: Build
run: |
python configure.py --map --version ${{matrix.version}} --compilers /compilers
ninja
- name: Upload maps
uses: actions/upload-artifact@v3
with:
name: ${{matrix.version}} maps
path: build/${{matrix.version}}/**/*.MAP