summaryrefslogtreecommitdiff
path: root/rtemsspec/packagebuildfactory.py
diff options
context:
space:
mode:
Diffstat (limited to 'rtemsspec/packagebuildfactory.py')
-rw-r--r--rtemsspec/packagebuildfactory.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/rtemsspec/packagebuildfactory.py b/rtemsspec/packagebuildfactory.py
index 9b3e7944..28e52fa3 100644
--- a/rtemsspec/packagebuildfactory.py
+++ b/rtemsspec/packagebuildfactory.py
@@ -28,6 +28,7 @@ from rtemsspec.archiver import Archiver
from rtemsspec.directorystate import DirectoryState
from rtemsspec.packagebuild import BuildItemFactory, PackageVariant
from rtemsspec.reposubset import RepositorySubset
+from rtemsspec.rtems import RTEMSItemCache
from rtemsspec.runactions import RunActions
from rtemsspec.runtests import RunTests, TestLog
from rtemsspec.testrunner import DummyTestRunner, GRMONManualTestRunner, \
@@ -40,6 +41,7 @@ def create_build_item_factory() -> BuildItemFactory:
factory.add_constructor("qdp/build-step/archive", Archiver)
factory.add_constructor("qdp/build-step/repository-subset",
RepositorySubset)
+ factory.add_constructor("qdp/build-step/rtems-item-cache", RTEMSItemCache)
factory.add_constructor("qdp/build-step/run-actions", RunActions)
factory.add_constructor("qdp/build-step/run-tests", RunTests)
factory.add_constructor("qdp/directory-state/generic", DirectoryState)