summaryrefslogtreecommitdiff
path: root/Jenkinsfile
diff options
context:
space:
mode:
authornotyourav <65437533+notyourav@users.noreply.github.com>2021-03-15 02:31:43 -0700
committerGitHub <noreply@github.com>2021-03-15 02:31:43 -0700
commit1b6a427e1a036771d73e43f6bdbcf7c06a2b406b (patch)
tree799f5a1166549528ca77f89ad8152a787f913ff2 /Jenkinsfile
parent1dd4abd3ed1ad1aab3c17dca8d9510f36413e811 (diff)
Update Jenkinsfile
Diffstat (limited to 'Jenkinsfile')
-rw-r--r--Jenkinsfile9
1 files changed, 3 insertions, 6 deletions
diff --git a/Jenkinsfile b/Jenkinsfile
index 8acebc12..123cd358 100644
--- a/Jenkinsfile
+++ b/Jenkinsfile
@@ -5,13 +5,10 @@ pipeline {
stage('Setup') {
steps {
echo 'Setting up...'
- sh 'cp /usr/local/etc/roms/baserom_tmc.gba baserom.gba'
git clone https://github.com/zeldaret/tmc
- git clone https://github.com/pret/agbcc
- cd ./agbcc
- sh build.sh
- sh install.sh ../tmc
- cd ../tmc
+ cd ./tmc
+ sh /var/www/jenkins/agbcc/install.sh .
+ sh 'cp /usr/local/etc/roms/baserom_tmc.gba baserom.gba'
sh 'make -j setup'
}
}