Code cleanup #291
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build | |
# Build on every branch push, tag push, and pull request change: | |
on: [push, pull_request_target] | |
jobs: | |
build_repo: | |
name: Build repo (${{ matrix.version }}) | |
runs-on: ubuntu-20.04 | |
strategy: | |
fail-fast: false | |
matrix: | |
version: [us, fr, eu, proto] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
ref: ${{ github.event.pull_request.head.sha }} | |
- name: Install package requirements | |
run: sudo apt-get install -yq make git build-essential binutils-mips-linux-gnu cpp-mips-linux-gnu gcc-mips-linux-gnu python3 python3-pip | |
- name: Upgrade pip | |
run: pip3 install --upgrade pip | |
- name: Install Splat | |
run: pip3 install -U splat64[mips] | |
- name: Install Python Dependencies | |
run: pip3 install -r requirements.txt | |
- name: Get extra dependencies | |
uses: actions/checkout@v3 | |
with: | |
repository: ${{ secrets.SECRETREPO }} | |
token: ${{ secrets.SECRETTOKEN }} | |
path: deps_repo | |
- name: Get the dependency | |
run: cp deps_repo/dukezh/* . | |
- name: Setup | |
run: make setup -j $(nproc) VERSION=${{ matrix.version }} | |
- name: Build Duke Nukem Zero Hour (MATCHING) | |
run: make -j $(nproc) VERSION=${{ matrix.version }} | |
- name: Build Duke Nukem Zero Hour (NON_MATCHING) | |
run: make -j $(nproc) VERSION=${{ matrix.version }} NON_MATCHING=1 BUILD_DIR=build_non_matching/${{ matrix.version }} | |
- name: Build Duke Nukem Zero Hour (MODERN GCC) | |
run: make -j $(nproc) VERSION=${{ matrix.version }} MODERN=1 BUILD_DIR=build_modern/${{ matrix.version }} | |
- name: Upload frogress | |
if: github.ref == 'refs/heads/master' && matrix.version == 'us' | |
run: python3 tools/scripts/frogress.py ${{ matrix.version }} --api_key ${{ secrets.PROGRESS_API_KEY }} |