mirror of
https://github.com/monero-project/meta.git
synced 2024-11-17 00:07:52 +00:00
repo was renamed to monero-gui
This commit is contained in:
parent
597b731684
commit
d3269b4238
1 changed files with 9 additions and 9 deletions
|
@ -59,7 +59,7 @@ c['change_source'].append(changes.GitPoller(
|
||||||
pollinterval=400))
|
pollinterval=400))
|
||||||
|
|
||||||
c['change_source'].append(changes.GitPoller(
|
c['change_source'].append(changes.GitPoller(
|
||||||
'https://github.com/monero-project/monero-core.git',
|
'https://github.com/monero-project/monero-gui.git',
|
||||||
workdir='gitpoller-workdir', branch='master',
|
workdir='gitpoller-workdir', branch='master',
|
||||||
pollinterval=600))
|
pollinterval=600))
|
||||||
|
|
||||||
|
@ -106,7 +106,7 @@ c['schedulers'].append(schedulers.SingleBranchScheduler(
|
||||||
c['schedulers'].append(schedulers.SingleBranchScheduler(
|
c['schedulers'].append(schedulers.SingleBranchScheduler(
|
||||||
name='monero-core PR builder',
|
name='monero-core PR builder',
|
||||||
builderNames=['monero-core-freebsd','monero-core-osx-10.12','monero-core-osx-10.11','monero-core-ubuntu-i686','monero-core-ubuntu-amd64','monero-core-win32','monero-core-win64','monero-core-ubuntu-arm7','monero-core-debian-armv8'],
|
builderNames=['monero-core-freebsd','monero-core-osx-10.12','monero-core-osx-10.11','monero-core-ubuntu-i686','monero-core-ubuntu-amd64','monero-core-win32','monero-core-win64','monero-core-ubuntu-arm7','monero-core-debian-armv8'],
|
||||||
change_filter=util.ChangeFilter(repository='https://github.com/monero-project/monero-core.git')
|
change_filter=util.ChangeFilter(repository='https://github.com/monero-project/monero-gui.git')
|
||||||
))
|
))
|
||||||
|
|
||||||
c['schedulers'].append(schedulers.SingleBranchScheduler(
|
c['schedulers'].append(schedulers.SingleBranchScheduler(
|
||||||
|
@ -244,11 +244,11 @@ dragonflyFactory.addStep(steps.ShellCommand(name = "zip", command = ["tar", "-zc
|
||||||
dragonflyFactory.addStep(steps.FileUpload(slavesrc=WithProperties("monero-%(gitversion)s-%(platform)s.tar.gz"), masterdest=WithProperties("/home/buildbot/master/public_html/downloads/monero-%(gitversion)s-%(platform)s.tar.gz"), url=WithProperties("https://build.getmonero.org/downloads/monero-%(gitversion)s-%(platform)s.tar.gz")))
|
dragonflyFactory.addStep(steps.FileUpload(slavesrc=WithProperties("monero-%(gitversion)s-%(platform)s.tar.gz"), masterdest=WithProperties("/home/buildbot/master/public_html/downloads/monero-%(gitversion)s-%(platform)s.tar.gz"), url=WithProperties("https://build.getmonero.org/downloads/monero-%(gitversion)s-%(platform)s.tar.gz")))
|
||||||
|
|
||||||
coreFactory = util.BuildFactory()
|
coreFactory = util.BuildFactory()
|
||||||
coreFactory.addStep(steps.Git(repourl='https://github.com/monero-project/monero-core.git', mode='full', submodules=True))
|
coreFactory.addStep(steps.Git(repourl='https://github.com/monero-project/monero-gui.git', mode='full', submodules=True))
|
||||||
coreFactory.addStep(steps.Compile(command = ["bash", "-ex", "build.sh"], timeout=None))
|
coreFactory.addStep(steps.Compile(command = ["bash", "-ex", "build.sh"], timeout=None))
|
||||||
|
|
||||||
coreOsxFactory = util.BuildFactory()
|
coreOsxFactory = util.BuildFactory()
|
||||||
coreOsxFactory.addStep(steps.Git(repourl='https://github.com/monero-project/monero-core.git', mode='full', submodules=True))
|
coreOsxFactory.addStep(steps.Git(repourl='https://github.com/monero-project/monero-gui.git', mode='full', submodules=True))
|
||||||
coreOsxFactory.addStep(steps.Compile(command = ["bash", "-ex", "./build.sh"], env={'PATH': '/opt/qt/Qt5.7.0/5.7/clang_64/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin'}))
|
coreOsxFactory.addStep(steps.Compile(command = ["bash", "-ex", "./build.sh"], env={'PATH': '/opt/qt/Qt5.7.0/5.7/clang_64/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin'}))
|
||||||
coreOsxFactory.addStep(steps.ShellCommand(command=['make', 'deploy'], name='deploy', description='deploying', workdir='build/build', env={'PATH': '/opt/qt/Qt5.7.0/5.7/clang_64/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin'}))
|
coreOsxFactory.addStep(steps.ShellCommand(command=['make', 'deploy'], name='deploy', description='deploying', workdir='build/build', env={'PATH': '/opt/qt/Qt5.7.0/5.7/clang_64/bin:/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin'}))
|
||||||
coreOsxFactory.addStep(steps.ShellCommand(name='copy boost', command=['cp', '/usr/local/opt/boost/lib/libboost_system-mt.dylib', 'build/release/bin/monero-wallet-gui.app/Contents/Frameworks/']))
|
coreOsxFactory.addStep(steps.ShellCommand(name='copy boost', command=['cp', '/usr/local/opt/boost/lib/libboost_system-mt.dylib', 'build/release/bin/monero-wallet-gui.app/Contents/Frameworks/']))
|
||||||
|
@ -262,12 +262,12 @@ coreOsxFactory.addStep(steps.ShellCommand(name = "zip", command = ["zip", "-r",
|
||||||
coreOsxFactory.addStep(steps.FileUpload(slavesrc=WithProperties("monero-wallet-gui-%(gitversion)s-%(platform)s.zip"), masterdest=WithProperties("/home/buildbot/master/public_html/downloads/monero-wallet-gui-%(gitversion)s-%(platform)s.zip"), url=WithProperties("https://build.getmonero.org/downloads/monero-wallet-gui-%(gitversion)s-%(platform)s.zip")))
|
coreOsxFactory.addStep(steps.FileUpload(slavesrc=WithProperties("monero-wallet-gui-%(gitversion)s-%(platform)s.zip"), masterdest=WithProperties("/home/buildbot/master/public_html/downloads/monero-wallet-gui-%(gitversion)s-%(platform)s.zip"), url=WithProperties("https://build.getmonero.org/downloads/monero-wallet-gui-%(gitversion)s-%(platform)s.zip")))
|
||||||
|
|
||||||
coreFreebsdFactory = util.BuildFactory()
|
coreFreebsdFactory = util.BuildFactory()
|
||||||
coreFreebsdFactory.addStep(steps.Git(repourl='https://github.com/monero-project/monero-core.git', mode='incremental', submodules=True))
|
coreFreebsdFactory.addStep(steps.Git(repourl='https://github.com/monero-project/monero-gui.git', mode='incremental', submodules=True))
|
||||||
coreFreebsdFactory.addStep(steps.Compile(command = ["bash", "-ex", "build.sh"],env={'SHELL': '/usr/local/bin/bash', 'PATH': '/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/home/vagrant/bin:/usr/local/lib/qt5/bin'}))
|
coreFreebsdFactory.addStep(steps.Compile(command = ["bash", "-ex", "build.sh"],env={'SHELL': '/usr/local/bin/bash', 'PATH': '/sbin:/bin:/usr/sbin:/usr/bin:/usr/games:/usr/local/sbin:/usr/local/bin:/home/vagrant/bin:/usr/local/lib/qt5/bin'}))
|
||||||
|
|
||||||
coreMingw32Factory = util.BuildFactory()
|
coreMingw32Factory = util.BuildFactory()
|
||||||
coreMingw32Factory.addStep(steps.RemoveDirectory(dir='monero'))
|
coreMingw32Factory.addStep(steps.RemoveDirectory(dir='monero'))
|
||||||
coreMingw32Factory.addStep(steps.Git(repourl='https://github.com/monero-project/monero-core.git', mode='full', method='clobber', submodules=True))
|
coreMingw32Factory.addStep(steps.Git(repourl='https://github.com/monero-project/monero-gui.git', mode='full', method='clobber', submodules=True))
|
||||||
coreMingw32Factory.addStep(steps.Compile(command = ['/msys32/usr/bin/bash.exe', '-ex', './build.sh'],env={'MSYSTEM': 'MINGW32', 'PATH': '/c/Windows/system32;/c/Windows;/c/Windows/System32/WindowsPowerShell/v1.0;/c/Qt/Qt5.7.0/Tools/mingw530_32/bin;/c/Qt/Qt5.7.0/Tools/mingw530_32/boost/lib;/c/Qt/Qt5.7.0/5.7/mingw53_32/bin;/c/python27/lib/site-packages/pywin32_system32;/c/msys32/mingw32/bin;/c/msys32/usr/bin'}))
|
coreMingw32Factory.addStep(steps.Compile(command = ['/msys32/usr/bin/bash.exe', '-ex', './build.sh'],env={'MSYSTEM': 'MINGW32', 'PATH': '/c/Windows/system32;/c/Windows;/c/Windows/System32/WindowsPowerShell/v1.0;/c/Qt/Qt5.7.0/Tools/mingw530_32/bin;/c/Qt/Qt5.7.0/Tools/mingw530_32/boost/lib;/c/Qt/Qt5.7.0/5.7/mingw53_32/bin;/c/python27/lib/site-packages/pywin32_system32;/c/msys32/mingw32/bin;/c/msys32/usr/bin'}))
|
||||||
coreMingw32Factory.addStep(steps.Compile(name='deploy', description='deploying', descriptionDone='deploy', command = ['make', 'deploy'], workdir='build/build', env={'MSYSTEM': 'MINGW32', 'PATH': '/c/Python27;/c/Python27/Scripts;/c/Windows/system32;/c/Windows;/c/Qt/Qt5.7.0/Tools/mingw530_32/bin;/c/Qt/Qt5.7.0/Tools/mingw530_32/boost/lib;/c/Qt/Qt5.7.0/5.7/mingw53_32/bin;/c/python27/lib/site-packages/pywin32_system32;/c/msys32/mingw32/bin;/msys32/usr/bin'}))
|
coreMingw32Factory.addStep(steps.Compile(name='deploy', description='deploying', descriptionDone='deploy', command = ['make', 'deploy'], workdir='build/build', env={'MSYSTEM': 'MINGW32', 'PATH': '/c/Python27;/c/Python27/Scripts;/c/Windows/system32;/c/Windows;/c/Qt/Qt5.7.0/Tools/mingw530_32/bin;/c/Qt/Qt5.7.0/Tools/mingw530_32/boost/lib;/c/Qt/Qt5.7.0/5.7/mingw53_32/bin;/c/python27/lib/site-packages/pywin32_system32;/c/msys32/mingw32/bin;/msys32/usr/bin'}))
|
||||||
coreMingw32Factory.addStep(steps.SetPropertyFromCommand(name = "set version", command = ["git", "rev-parse", "--short", "HEAD"], property = 'gitversion'))
|
coreMingw32Factory.addStep(steps.SetPropertyFromCommand(name = "set version", command = ["git", "rev-parse", "--short", "HEAD"], property = 'gitversion'))
|
||||||
|
@ -276,7 +276,7 @@ coreMingw32Factory.addStep(steps.FileUpload(slavesrc=WithProperties("monero-core
|
||||||
|
|
||||||
coreMingw64Factory = util.BuildFactory()
|
coreMingw64Factory = util.BuildFactory()
|
||||||
coreMingw64Factory.addStep(steps.RemoveDirectory(dir='build/build'))
|
coreMingw64Factory.addStep(steps.RemoveDirectory(dir='build/build'))
|
||||||
coreMingw64Factory.addStep(steps.Git(repourl='https://github.com/monero-project/monero-core.git', mode='full', submodules=True))
|
coreMingw64Factory.addStep(steps.Git(repourl='https://github.com/monero-project/monero-gui.git', mode='full', submodules=True))
|
||||||
coreMingw64Factory.addStep(steps.Compile(command = ["/msys64/usr/bin/bash.exe","-ex","./build.sh"],env={'MSYSTEM': 'MINGW64', 'PATH': '/c/Qt/qt-everywhere-opensource-src-5.7.0/qtbase/bin;/c/msys64/usr/bin;/c/Windows/system32;/c/Windows;/c/msys64/mingw64/bin'}))
|
coreMingw64Factory.addStep(steps.Compile(command = ["/msys64/usr/bin/bash.exe","-ex","./build.sh"],env={'MSYSTEM': 'MINGW64', 'PATH': '/c/Qt/qt-everywhere-opensource-src-5.7.0/qtbase/bin;/c/msys64/usr/bin;/c/Windows/system32;/c/Windows;/c/msys64/mingw64/bin'}))
|
||||||
coreMingw64Factory.addStep(steps.Compile(name='deploy', description='deploying', descriptionDone='deploy', command = ['make', 'deploy'], workdir='build/build', env={'MSYSTEM_PREFIX': '/mingw64', 'MSYSTEM': 'MINGW64', 'PATH': ["c:\Qt\qt-everywhere-opensource-src-5.7.0\qtbase\\bin", "${PATH}"]}))
|
coreMingw64Factory.addStep(steps.Compile(name='deploy', description='deploying', descriptionDone='deploy', command = ['make', 'deploy'], workdir='build/build', env={'MSYSTEM_PREFIX': '/mingw64', 'MSYSTEM': 'MINGW64', 'PATH': ["c:\Qt\qt-everywhere-opensource-src-5.7.0\qtbase\\bin", "${PATH}"]}))
|
||||||
coreMingw64Factory.addStep(steps.SetPropertyFromCommand(name = "set version", command = ["git", "rev-parse", "--short", "HEAD"], property = 'gitversion'))
|
coreMingw64Factory.addStep(steps.SetPropertyFromCommand(name = "set version", command = ["git", "rev-parse", "--short", "HEAD"], property = 'gitversion'))
|
||||||
|
@ -359,7 +359,7 @@ kovriStaticWin64Factory.addStep(steps.FileUpload(name="upload hashes", slavesrc=
|
||||||
|
|
||||||
|
|
||||||
coreUbuntu64Factory = util.BuildFactory()
|
coreUbuntu64Factory = util.BuildFactory()
|
||||||
coreUbuntu64Factory.addStep(steps.Git(repourl='https://github.com/monero-project/monero-core.git', mode='full', submodules=True))
|
coreUbuntu64Factory.addStep(steps.Git(repourl='https://github.com/monero-project/monero-gui.git', mode='full', submodules=True))
|
||||||
coreUbuntu64Factory.addStep(steps.Compile(command = ["bash", "-ex", "./build.sh"], env={'PATH': '/opt/Qt/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'}))
|
coreUbuntu64Factory.addStep(steps.Compile(command = ["bash", "-ex", "./build.sh"], env={'PATH': '/opt/Qt/bin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin'}))
|
||||||
coreUbuntu64Factory.addStep(steps.Compile(name='deploy', description='deploying', descriptionDone='deploy', command = ['make', 'deploy'],workdir='build/build'))
|
coreUbuntu64Factory.addStep(steps.Compile(name='deploy', description='deploying', descriptionDone='deploy', command = ['make', 'deploy'],workdir='build/build'))
|
||||||
coreUbuntu64Factory.addStep(steps.SetPropertyFromCommand(name = "set version", command = ["git", "rev-parse", "--short", "HEAD"], property = 'gitversion'))
|
coreUbuntu64Factory.addStep(steps.SetPropertyFromCommand(name = "set version", command = ["git", "rev-parse", "--short", "HEAD"], property = 'gitversion'))
|
||||||
|
@ -368,7 +368,7 @@ coreUbuntu64Factory.addStep(steps.FileUpload(slavesrc=WithProperties("monero-cor
|
||||||
|
|
||||||
coreDebianFactory = util.BuildFactory()
|
coreDebianFactory = util.BuildFactory()
|
||||||
coreDebianFactory.addStep(steps.RemoveDirectory(dir='build/build'))
|
coreDebianFactory.addStep(steps.RemoveDirectory(dir='build/build'))
|
||||||
coreDebianFactory.addStep(steps.Git(repourl='https://github.com/monero-project/monero-core.git', mode='full', submodules=True))
|
coreDebianFactory.addStep(steps.Git(repourl='https://github.com/monero-project/monero-gui.git', mode='full', submodules=True))
|
||||||
coreDebianFactory.addStep(steps.Compile(command = ["bash", "-ex", "./build.sh"]))
|
coreDebianFactory.addStep(steps.Compile(command = ["bash", "-ex", "./build.sh"]))
|
||||||
coreDebianFactory.addStep(steps.Compile(name='deploy', description='deploying', descriptionDone='deploy', command = ['make', 'deploy'],workdir='build/build'))
|
coreDebianFactory.addStep(steps.Compile(name='deploy', description='deploying', descriptionDone='deploy', command = ['make', 'deploy'],workdir='build/build'))
|
||||||
coreDebianFactory.addStep(steps.SetPropertyFromCommand(name = "set version", command = ["git", "rev-parse", "--short", "HEAD"], property = 'gitversion'))
|
coreDebianFactory.addStep(steps.SetPropertyFromCommand(name = "set version", command = ["git", "rev-parse", "--short", "HEAD"], property = 'gitversion'))
|
||||||
|
|
Loading…
Reference in a new issue