1
0
Fork 0
mirror of https://github.com/zeldaret/oot.git synced 2024-12-27 07:07:09 +00:00

Merge pull request #53 from ethteck/nproc_test

Build faster on Jenkins
This commit is contained in:
fig02 2020-04-05 14:40:20 -04:00 committed by GitHub
commit 5aaaa4ef93
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

4
Jenkinsfile vendored
View file

@ -9,13 +9,13 @@ pipeline {
sh 'git submodule update --init --recursive' sh 'git submodule update --init --recursive'
sh 'cp -r /usr/local/etc/ido/ido7.1_compiler tools/ido7.1_compiler' sh 'cp -r /usr/local/etc/ido/ido7.1_compiler tools/ido7.1_compiler'
sh 'chmod +x -R tools/ido*' sh 'chmod +x -R tools/ido*'
sh 'make setup' sh 'make -j`nproc` setup'
} }
} }
stage('Build') { stage('Build') {
steps { steps {
echo 'Building...' echo 'Building...'
sh 'make' sh 'make -j`nproc`'
} }
} }
} }