This repository has been archived by the owner on Apr 5, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Download png boxart files (Fixes #68) (#69)
* Download png boxart files (Fixes #68) * Improve azure-piplines.yml * Derp fix * Don't dl existing art & don't replace if fl fails (Fixes #47, #70)
- Loading branch information
1 parent
7c6e75f
commit eebfc54
Showing
2 changed files
with
51 additions
and
38 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,37 +15,37 @@ variables: | |
|
||
steps: | ||
- script: | | ||
curl -L https://github.com/devkitPro/pacman/releases/download/devkitpro-pacman-1.0.1/devkitpro-pacman.deb -o pacman.deb | ||
sudo apt update | ||
sudo apt install p7zip-full haveged | ||
sudo dpkg -i pacman.deb | ||
sudo dkp-pacman -Sy | ||
sudo dkp-pacman -S 3ds-dev --noconfirm | ||
sudo dkp-pacman -S 3ds-curl 3ds-libarchive 3ds-liblzma 3ds-mbedtls 3ds-bzip2 3ds-zlib --noconfirm | ||
sudo 7z x libctru.7z -o/opt/devkitpro/ -y | ||
curl -L https://github.com/Steveice10/bannertool/releases/download/1.1.0/bannertool.zip -o bannertool.zip | ||
sudo 7z e bannertool.zip linux-x86_64/bannertool | ||
sudo chmod +x bannertool | ||
rm bannertool.zip | ||
curl -L https://github.com/profi200/Project_CTR/releases/download/0.15/makerom_015_ctrtool.zip -o makerom_015_ctrtool.zip | ||
sudo 7z e makerom_015_ctrtool.zip Linux_x86_64/makerom | ||
sudo chmod +x makerom | ||
rm makerom_015_ctrtool.zip | ||
curl -L https://github.com/devkitPro/pacman/releases/download/devkitpro-pacman-1.0.1/devkitpro-pacman.deb -o pacman.deb | ||
sudo apt update | ||
sudo apt install p7zip-full haveged | ||
sudo dpkg -i pacman.deb | ||
sudo dkp-pacman -Sy | ||
sudo dkp-pacman -S 3ds-dev --noconfirm | ||
sudo dkp-pacman -S 3ds-curl 3ds-libarchive 3ds-liblzma 3ds-mbedtls 3ds-bzip2 3ds-zlib --noconfirm | ||
sudo 7z x libctru.7z -o/opt/devkitpro/ -y | ||
curl -L https://github.com/Steveice10/bannertool/releases/download/1.1.0/bannertool.zip -o bannertool.zip | ||
sudo 7z e bannertool.zip linux-x86_64/bannertool | ||
sudo chmod +x bannertool | ||
rm bannertool.zip | ||
curl -L https://github.com/profi200/Project_CTR/releases/download/0.15/makerom_015_ctrtool.zip -o makerom_015_ctrtool.zip | ||
sudo 7z e makerom_015_ctrtool.zip Linux_x86_64/makerom | ||
sudo chmod +x makerom | ||
rm makerom_015_ctrtool.zip | ||
displayName: 'Setup devkitPro' | ||
|
||
- script: | | ||
export PATH=$PATH:$(pwd) | ||
export DEVKITPRO="/opt/devkitpro" | ||
export DEVKITARM="/opt/devkitpro/devkitARM" | ||
make | ||
export PATH=$PATH:$(pwd) | ||
export DEVKITPRO="/opt/devkitpro" | ||
export DEVKITARM="/opt/devkitpro/devkitARM" | ||
make | ||
echo '##vso[task.setvariable variable=COMMIT_TAG]'$(git log --format=%h -1) | ||
echo '##vso[task.setvariable variable=COMMIT_MESSAGE]'$(git log --pretty=format:"%an - %s" -1) | ||
displayName: 'Build TWiLightMenu-Updater' | ||
|
||
- script: | | ||
echo '##vso[task.setvariable variable=COMMIT_TAG]'$(git log --format=%h -1) | ||
echo '##vso[task.setvariable variable=COMMIT_MESSAGE]'$(git log --pretty=format:"%an - %s" -1) | ||
git config --global user.email "[email protected]" | ||
git config --global user.name "TWLBot" | ||
git clone https://[email protected]/TWLBot/Builds.git | ||
git clone --depth 1 https://[email protected]/TWLBot/Builds.git | ||
cd Builds/TWiLightMenu\ Updater/ | ||
cp ../../TWiLight_Menu++_Updater.3dsx TWiLight_Menu++_Updater.3dsx | ||
cp ../../TWiLight_Menu++_Updater.cia TWiLight_Menu++_Updater.cia | ||
|
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