mirror of
https://github.com/HarbourMasters/Shipwright.git
synced 2025-08-22 06:13:45 -07:00
Add OTRGui
This commit is contained in:
parent
60b5b07c6c
commit
6acde2e5e3
1 changed files with 15 additions and 6 deletions
21
Jenkinsfile
vendored
21
Jenkinsfile
vendored
|
@ -86,12 +86,21 @@ pipeline {
|
|||
catchError(buildResult: 'FAILURE', stageResult: 'FAILURE') {
|
||||
sh '''
|
||||
|
||||
sudo cp ../../ZELOOTD.z64 OTRExporter/baserom_non_mq.z64
|
||||
sudo docker build . -t soh
|
||||
sudo docker run --name sohcont -dit --rm -v $(pwd):/soh soh /bin/bash
|
||||
sudo cp ../../buildsoh.bash soh
|
||||
sudo docker exec sohcont soh/buildsoh.bash
|
||||
sudo zip soh-linux.zip ./soh/soh.elf
|
||||
cp ../../ZELOOTD.z64 OTRExporter/baserom_non_mq.z64
|
||||
docker build . -t soh
|
||||
docker run --name sohcont -dit --rm -v $(pwd):/soh soh /bin/bash
|
||||
cp ../../buildsoh.bash soh
|
||||
docker exec sohcont soh/buildsoh.bash
|
||||
|
||||
mkdir build
|
||||
mv soh/soh.elf build/
|
||||
mv OTRGui/build/OTRGui build/
|
||||
mv OTRGui/build/assets build/
|
||||
mv README.md build/readme.txt
|
||||
cd build
|
||||
|
||||
zip -r soh-linux.zip soh.elf OTRGui assets readme.txt
|
||||
mv soh-linux.zip ../
|
||||
|
||||
'''
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue