Reimplementation of my recent sort fixes to solve further issues (#2456) #3371
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 TWiLight Menu++ Nightly | |
on: | |
push: | |
branches: ["*"] | |
paths-ignore: | |
- 'README.md' | |
- '.github/ISSUE_TEMPLATE/*' | |
pull_request: | |
branches: ["*"] | |
paths-ignore: | |
- 'README.md' | |
- '.github/ISSUE_TEMPLATE/*' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
container: devkitpro/devkitarm | |
name: Build with Docker using devkitARM | |
outputs: | |
commit_tag: ${{ steps.make-cias.outputs.commit_tag }} | |
commit_hash: ${{ steps.make-cias.outputs.commit_hash }} | |
author_name: ${{ steps.make-cias.outputs.author_name }} | |
committer_name: ${{ steps.make-cias.outputs.committer_name }} | |
commit_subject: ${{ steps.make-cias.outputs.commit_subject }} | |
steps: | |
- name: Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
submodules: recursive | |
fetch-depth: 0 | |
- name: Install tools | |
run: | | |
sudo apt-get update | |
sudo apt-get install p7zip-full python -y | |
- name: Setup environment | |
run: | | |
git config --global safe.directory '*' | |
echo "commit_tag=$(git describe --abbrev=0 --tags)" >> $GITHUB_OUTPUT | |
echo "commit_hash=$(git log --format=%h -1)" >> $GITHUB_OUTPUT | |
# Webhook info | |
echo "author_name=$(git log -1 $GITHUB_SHA --pretty=%aN)" >> $GITHUB_OUTPUT | |
echo "committer_name=$(git log -1 $GITHUB_SHA --pretty=%cN)" >> $GITHUB_OUTPUT | |
echo "commit_subject=$(git log -1 $GITHUB_SHA --pretty=%s)" >> $GITHUB_OUTPUT | |
- name: Get manual pages | |
run: | | |
cd manual/nitrofiles | |
curl -LO https://github.com/DS-Homebrew/twilight-manual/releases/download/pages/pages.7z | |
7z x pages.7z | |
rm pages.7z | |
- name: Build TWiLightMenu++ | |
run: make package | |
- name: Make booter and TWiLightMenu CIAs | |
id: make-cias | |
run: | | |
cd booter/ | |
chmod +x make_cia | |
./make_cia --srl="booter.nds" --id_0=$(git rev-parse --short=7 HEAD) --tikID=$(git rev-parse --short=16 HEAD) | |
mkdir -p "../7zfile/3DS - CFW users/" | |
cp "booter.cia" "../7zfile/3DS - CFW users/TWiLight Menu.cia" | |
- name: Pack 7z Package for nightly | |
run: | | |
# Make artifacts directory | |
mkdir -p ~/artifacts | |
# Don't include unnecessary files in nightlies | |
rm -rf 7zfile/_nds/TWiLightMenu/extras/fonts | |
rm -rf 7zfile/debug | |
rm -rf 7zfile/roms | |
rm "7zfile/3DS - CFW users/Games supported with widescreen.txt" | |
rm "7zfile/AP-patched games.txt" | |
rm 7zfile/snemul.cfg | |
cp -r 7zfile/ TWiLightMenu/ | |
7z a TWiLightMenu.7z TWiLightMenu/ | |
mv TWiLightMenu.7z ~/artifacts | |
# DSi 7z | |
cp -r TWiLightMenu/DSi\ -\ CFW\ users/SDNAND\ root/* TWiLightMenu | |
rm -rf TWiLightMenu/DSi\ -\ CFW\ users | |
cp -r TWiLightMenu/DSi\&3DS\ -\ SD\ card\ users/* TWiLightMenu | |
rm -rf TWiLightMenu/DSi\&3DS\ -\ SD\ card\ users | |
rm -rf TWiLightMenu/3DS\ -\ CFW\ users | |
rm -rf TWiLightMenu/Flashcard\ users | |
rm -rf TWiLightMenu/_nds/GBARunner2_arm7dldi_3ds.nds | |
rm -rf TWiLightMenu/_nds/GBARunner2_arm7dldi_nodsp_3ds.nds | |
rm -rf TWiLightMenu/_nds/TWiLightMenu/bootplg.srldr | |
rm -rf TWiLightMenu/_nds/TWiLightMenu/gbaswitch.srldr | |
7z a TWiLightMenu-DSi.7z TWiLightMenu | |
mv TWiLightMenu-DSi.7z ~/artifacts | |
# 3DS 7z | |
rm -rf TWiLightMenu | |
cp -r 7zfile/ TWiLightMenu/ | |
cp -r TWiLightMenu/3DS\ -\ CFW\ users/* TWiLightMenu | |
rm -rf TWiLightMenu/3DS\ -\ CFW\ users | |
cp -r TWiLightMenu/DSi\&3DS\ -\ SD\ card\ users/* TWiLightMenu | |
rm -rf TWiLightMenu/DSi\&3DS\ -\ SD\ card\ users | |
rm -rf TWiLightMenu/DSi\ -\ CFW\ users | |
rm -rf TWiLightMenu/Flashcard\ users | |
rm -rf TWiLightMenu/_nds/GBARunner2_arm7dldi_dsi.nds | |
rm -rf TWiLightMenu/_nds/GBARunner2_arm7dldi_nodsp_dsi.nds | |
rm -rf TWiLightMenu/_nds/TWiLightMenu/unlaunch | |
rm -rf TWiLightMenu/_nds/TWiLightMenu/bootplg.srldr | |
rm -rf TWiLightMenu/_nds/TWiLightMenu/gbaswitch.srldr | |
7z a TWiLightMenu-3DS.7z TWiLightMenu | |
mv TWiLightMenu-3DS.7z ~/artifacts | |
# Flashcard 7z | |
rm -rf TWiLightMenu | |
cp -r 7zfile/ TWiLightMenu/ | |
cp -r TWiLightMenu/Flashcard\ users/* TWiLightMenu | |
rm -rf TWiLightMenu/Flashcard\ users | |
rm -rf TWiLightMenu/3DS\ -\ CFW\ users | |
rm -rf TWiLightMenu/DSi\&3DS\ -\ SD\ card\ users | |
rm -rf TWiLightMenu/DSi\ -\ CFW\ users | |
7z a TWiLightMenu-Flashcard.7z TWiLightMenu | |
mv TWiLightMenu-Flashcard.7z ~/artifacts | |
# apfix.pck | |
cp 7zfile/_nds/TWiLightMenu/extras/apfix.pck ~/artifacts | |
# widescreen.pck | |
cp 7zfile/_nds/TWiLightMenu/extras/widescreen.pck ~/artifacts | |
- name: Publish build to GH Actions | |
if: ${{ success() && !startsWith(github.ref, 'refs/pull') }} | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ~/artifacts/* | |
name: build | |
- name: Publish build to GH Actions (PR) | |
if: ${{ success() && startsWith(github.ref, 'refs/pull') }} | |
uses: actions/upload-artifact@v3 | |
with: | |
path: ~/artifacts/TWiLightMenu.7z | |
name: build | |
# Only run this for non-PR jobs. | |
publish_build: | |
runs-on: ubuntu-latest | |
name: Publish build to ??? | |
if: ${{ success() && !startsWith(github.ref, 'refs/pull') }} | |
needs: build | |
env: | |
COMMIT_TAG: ${{ needs.build.outputs.commit_tag }} | |
COMMIT_HASH: ${{ needs.build.outputs.commit_hash }} | |
AUTHOR_NAME: ${{ needs.build.outputs.author_name }} | |
COMMIT_SUBJECT: ${{ needs.build.outputs.commit_subject }} | |
COMMIT_MESSAGE: ${{ needs.build.outputs.commit_message }} | |
outputs: | |
current_date: ${{ steps.commit.outputs.current_date }} | |
steps: | |
- name: Download artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: build | |
path: build | |
send_success_webhook: | |
runs-on: ubuntu-latest | |
needs: [publish_build, build] | |
name: Send success webhook | |
if: ${{ !startsWith(github.ref, 'refs/pull') && success() }} | |
env: | |
CURRENT_DATE: ${{ needs.publish_build.outputs.current_date }} | |
AUTHOR_NAME: ${{ needs.build.outputs.author_name }} | |
COMMITTER_NAME: ${{ needs.build.outputs.committer_name }} | |
COMMIT_SUBJECT: ${{ needs.build.outputs.commit_subject }} | |
COMMIT_MESSAGE: ${{ needs.build.outputs.commit_message }} | |
steps: | |
- name: Send success webhook | |
run: | | |
curl -o send.sh https://raw.githubusercontent.com/DS-Homebrew/discord-webhooks/master/send-ghactions.sh | |
chmod +x send.sh | |
./send.sh success ${{ secrets.WEBHOOK_URL }} | |
send_failure_webhook: | |
runs-on: ubuntu-latest | |
needs: [publish_build, build] | |
name: Send failure webhook | |
if: ${{ !startsWith(github.ref, 'refs/pull') && failure() }} | |
steps: | |
- name: Send failure webhook | |
run: | | |
curl -o send.sh https://raw.githubusercontent.com/DS-Homebrew/discord-webhooks/master/send-ghactions.sh | |
chmod +x send.sh | |
./send.sh failure ${{ secrets.WEBHOOK_URL }} |