diff options
author | Magnus Granberg <zorry@gentoo.org> | 2021-02-27 23:45:35 +0100 |
---|---|---|
committer | Magnus Granberg <zorry@gentoo.org> | 2021-02-27 23:45:35 +0100 |
commit | 22ad0178cca549026ab51f9f26e3fb9ad28f6374 (patch) | |
tree | ddea323280aa6e7a30b9448e65a6b68b043dfdf7 /buildbot_gentoo_ci/config/buildfactorys.py | |
parent | Remove the symlink for make.profile before we remove the portage dir (diff) | |
download | tinderbox-cluster-22ad0178cca549026ab51f9f26e3fb9ad28f6374.tar.gz tinderbox-cluster-22ad0178cca549026ab51f9f26e3fb9ad28f6374.tar.bz2 tinderbox-cluster-22ad0178cca549026ab51f9f26e3fb9ad28f6374.zip |
Add SetPackageDefault and SetEnvDefault to steps
Signed-off-by: Magnus Granberg <zorry@gentoo.org>
Diffstat (limited to 'buildbot_gentoo_ci/config/buildfactorys.py')
-rw-r--r-- | buildbot_gentoo_ci/config/buildfactorys.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/buildbot_gentoo_ci/config/buildfactorys.py b/buildbot_gentoo_ci/config/buildfactorys.py index ac8bac1..acafed8 100644 --- a/buildbot_gentoo_ci/config/buildfactorys.py +++ b/buildbot_gentoo_ci/config/buildfactorys.py @@ -9,6 +9,7 @@ from buildbot_gentoo_ci.steps import category from buildbot_gentoo_ci.steps import package from buildbot_gentoo_ci.steps import version from buildbot_gentoo_ci.steps import builders +from buildbot_gentoo_ci.steps import portage def update_db_check(): f = util.BuildFactory() @@ -114,9 +115,10 @@ def run_build_request(): f.addStep(builders.UpdateRepos()) # setup make.conf f.addStep(builders.SetMakeConf()) - # setup package.* - #f.addStep(portages.SetPackageUse()) # setup env + f.addStep(portage.SetEnvDefault()) + # setup package.* + #f.addStep(portage.SetPackageDefault()) # setup files in /etc if needed # run --regen if needed on repo # update packages before any tests |