mirror of
https://github.com/pret/pokeplatinum.git
synced 2026-04-25 07:29:01 -05:00
74 lines
2.6 KiB
YAML
74 lines
2.6 KiB
YAML
name: build
|
|
|
|
on:
|
|
push:
|
|
branches: [ main ]
|
|
pull_request:
|
|
|
|
env:
|
|
LM_LICENSE_FILE: "$GITHUB_WORKSPACE/tools/mwccarm/license.dat"
|
|
CC: gcc-10
|
|
CXX: g++-10
|
|
CALCROM_DISCORD_WEBHOOK_AVATAR_URL: "https://i.imgur.com/38BQHdd.png"
|
|
CALCROM_DISCORD_WEBHOOK_USERNAME: OK
|
|
CALCROM_WEBHOOK_URL: ${{ secrets.WEBHOOKURL }}
|
|
COMPARE: 1
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-18.04
|
|
|
|
steps:
|
|
- name: Update and Install Software
|
|
run: |
|
|
sudo apt -y --allow-downgrades install binutils-arm-none-eabi p7zip-full pkg-config libpugixml-dev
|
|
sudo dpkg --add-architecture i386
|
|
wget -qO - https://dl.winehq.org/wine-builds/winehq.key | sudo apt-key add -
|
|
sudo add-apt-repository ppa:cybermax-dexter/sdl2-backport
|
|
sudo apt-add-repository "deb https://dl.winehq.org/wine-builds/ubuntu $(lsb_release -cs) main"
|
|
sudo apt -y --allow-downgrades install --install-recommends winehq-stable
|
|
|
|
- name: Checkout Repo
|
|
uses: actions/checkout@v2
|
|
|
|
- name: Setup Repo
|
|
run: |
|
|
mkdir -p ~/download
|
|
cd ~/download
|
|
wget https://cdn.discordapp.com/attachments/698589325620936736/845499146982129684/mwccarm.zip
|
|
wget https://cdn.discordapp.com/attachments/698589325620936736/722822401963851797/NitroSDK-3_2-060901.7z
|
|
unzip mwccarm.zip
|
|
mv mwccarm $GITHUB_WORKSPACE/tools
|
|
7z x NitroSDK-3_2-060901.7z
|
|
mv NitroSDK-3_2-060901/tools/bin $GITHUB_WORKSPACE/tools
|
|
mv NitroSDK-3_2-060901/include/nitro/specfiles/ARM7-TS.lcf.template $GITHUB_WORKSPACE/sub/
|
|
mv NitroSDK-3_2-060901/include/nitro/specfiles/ARM9-TS.lcf.template $GITHUB_WORKSPACE/
|
|
mv NitroSDK-3_2-060901/include/nitro/specfiles/mwldarm.response.template $GITHUB_WORKSPACE/
|
|
working-directory: ~
|
|
|
|
- name: Build Platinum
|
|
env:
|
|
GAME_LANGUAGE: ENGLISH
|
|
GAME_REVISION: 0
|
|
run: make -j${nproc}
|
|
|
|
- name: Webhook
|
|
if: ${{ github.event_name == 'push' }}
|
|
run: |
|
|
sudo chmod 755 $GITHUB_WORKSPACE/.github/calcrom/webhook.sh
|
|
$GITHUB_WORKSPACE/.github/calcrom/webhook.sh pokeplatinum "$CALCROM_WEBHOOK_URL"
|
|
continue-on-error: true
|
|
|
|
- name: Post error archive
|
|
if: failure()
|
|
continue-on-error: true
|
|
run: find . -maxdepth 2 -type d \( -name build -or -name files \) -exec tar -czvhf failure.tar.gz {} +
|
|
|
|
- name: Post error upload
|
|
if: failure()
|
|
uses: actions/upload-artifact@v2
|
|
with:
|
|
name: pokeplatinum-failure-${{ github.run_id }}
|
|
path: failure.tar.gz
|
|
retention-days: 1
|