All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/2] icecc.bbclass: Ignore more icecream vars in hashes
@ 2018-02-26 22:30 Joshua Watt
  2018-02-26 22:30 ` [PATCH 2/2] Ignore icecc-create-env in task signature Joshua Watt
                   ` (7 more replies)
  0 siblings, 8 replies; 11+ messages in thread
From: Joshua Watt @ 2018-02-26 22:30 UTC (permalink / raw)
  To: openembedded-core

Changing ICECC_ENV_VERSION or ICECC_SCHEDULER_HOST should not cause
recipes to rebuild

Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
---
 meta/classes/icecc.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/icecc.bbclass b/meta/classes/icecc.bbclass
index 36dcfbe6048..6e35e3be486 100644
--- a/meta/classes/icecc.bbclass
+++ b/meta/classes/icecc.bbclass
@@ -30,7 +30,7 @@
 
 BB_HASHBASE_WHITELIST += "ICECC_PARALLEL_MAKE ICECC_DISABLED ICECC_USER_PACKAGE_BL \
     ICECC_USER_CLASS_BL ICECC_USER_PACKAGE_WL ICECC_PATH ICECC_ENV_EXEC \
-    ICECC_CARET_WORKAROUND ICECC_CFLAGS"
+    ICECC_CARET_WORKAROUND ICECC_CFLAGS ICECC_ENV_VERSION ICECC_SCHEDULER_HOST"
 
 ICECC_ENV_EXEC ?= "${STAGING_BINDIR_NATIVE}/icecc-create-env"
 
-- 
2.14.3



^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH 2/2] Ignore icecc-create-env in task signature
  2018-02-26 22:30 [PATCH 1/2] icecc.bbclass: Ignore more icecream vars in hashes Joshua Watt
@ 2018-02-26 22:30 ` Joshua Watt
  2018-02-26 23:02 ` ✗ patchtest: failure for "icecc.bbclass: Ignore more ice..." and 1 more Patchwork
                   ` (6 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Joshua Watt @ 2018-02-26 22:30 UTC (permalink / raw)
  To: openembedded-core

Changes to the icecc-create-env recipe should not cause all recipes to
rebuild just because the have inherited icecc.

Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
---
 meta/lib/oe/sstatesig.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py
index 3a8778eae01..6be9d32133a 100644
--- a/meta/lib/oe/sstatesig.py
+++ b/meta/lib/oe/sstatesig.py
@@ -29,7 +29,7 @@ def sstate_rundepfilter(siggen, fn, recipename, task, dep, depname, dataCache):
         return True
 
     # Quilt (patch application) changing isn't likely to affect anything
-    excludelist = ['quilt-native', 'subversion-native', 'git-native', 'ccache-native']
+    excludelist = ['quilt-native', 'subversion-native', 'git-native', 'ccache-native', 'icecc-create-env-native']
     if depname in excludelist and recipename != depname:
         return False
 
-- 
2.14.3



^ permalink raw reply related	[flat|nested] 11+ messages in thread

* ✗ patchtest: failure for "icecc.bbclass: Ignore more ice..." and 1 more
  2018-02-26 22:30 [PATCH 1/2] icecc.bbclass: Ignore more icecream vars in hashes Joshua Watt
  2018-02-26 22:30 ` [PATCH 2/2] Ignore icecc-create-env in task signature Joshua Watt
@ 2018-02-26 23:02 ` Patchwork
  2018-02-27  3:01 ` [PATCH v2 1/2] icecc.bbclass: Ignore more icecream vars in hashes Joshua Watt
                   ` (5 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2018-02-26 23:02 UTC (permalink / raw)
  To: Joshua Watt; +Cc: openembedded-core

== Series Details ==

Series: "icecc.bbclass: Ignore more ice..." and 1 more
Revision: 1
URL   : https://patchwork.openembedded.org/series/11106/
State : failure

== Summary ==


Thank you for submitting this patch series to OpenEmbedded Core. This is
an automated response. Several tests have been executed on the proposed
series by patchtest resulting in the following failures:



* Patch            [2/2] Ignore icecc-create-env in task signature
 Issue             Shortlog does not follow expected format [test_shortlog_format] 
  Suggested fix    Commit shortlog (first line of commit message) should follow the format "<target>: <summary>"



If you believe any of these test results are incorrect, please reply to the
mailing list (openembedded-core@lists.openembedded.org) raising your concerns.
Otherwise we would appreciate you correcting the issues and submitting a new
version of the patchset if applicable. Please ensure you add/increment the
version number when sending the new version (i.e. [PATCH] -> [PATCH v2] ->
[PATCH v3] -> ...).

---
Guidelines:     https://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines
Test framework: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest
Test suite:     http://git.yoctoproject.org/cgit/cgit.cgi/patchtest-oe



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH v2 1/2] icecc.bbclass: Ignore more icecream vars in hashes
  2018-02-26 22:30 [PATCH 1/2] icecc.bbclass: Ignore more icecream vars in hashes Joshua Watt
  2018-02-26 22:30 ` [PATCH 2/2] Ignore icecc-create-env in task signature Joshua Watt
  2018-02-26 23:02 ` ✗ patchtest: failure for "icecc.bbclass: Ignore more ice..." and 1 more Patchwork
@ 2018-02-27  3:01 ` Joshua Watt
  2018-02-27  3:01   ` [PATCH v2 2/2] sstatesig: Ignore icecc-create-env in task sigs Joshua Watt
  2018-02-27  3:35 ` ✗ patchtest: failure for "icecc.bbclass: Ignore more ice..." and 1 more (rev2) Patchwork
                   ` (4 subsequent siblings)
  7 siblings, 1 reply; 11+ messages in thread
From: Joshua Watt @ 2018-02-27  3:01 UTC (permalink / raw)
  To: openembedded-core

Changing ICECC_ENV_VERSION or ICECC_SCHEDULER_HOST should not cause
recipes to rebuild

Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
---
 meta/classes/icecc.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/icecc.bbclass b/meta/classes/icecc.bbclass
index 36dcfbe6048..6e35e3be486 100644
--- a/meta/classes/icecc.bbclass
+++ b/meta/classes/icecc.bbclass
@@ -30,7 +30,7 @@
 
 BB_HASHBASE_WHITELIST += "ICECC_PARALLEL_MAKE ICECC_DISABLED ICECC_USER_PACKAGE_BL \
     ICECC_USER_CLASS_BL ICECC_USER_PACKAGE_WL ICECC_PATH ICECC_ENV_EXEC \
-    ICECC_CARET_WORKAROUND ICECC_CFLAGS"
+    ICECC_CARET_WORKAROUND ICECC_CFLAGS ICECC_ENV_VERSION ICECC_SCHEDULER_HOST"
 
 ICECC_ENV_EXEC ?= "${STAGING_BINDIR_NATIVE}/icecc-create-env"
 
-- 
2.14.3



^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH v2 2/2] sstatesig: Ignore icecc-create-env in task sigs
  2018-02-27  3:01 ` [PATCH v2 1/2] icecc.bbclass: Ignore more icecream vars in hashes Joshua Watt
@ 2018-02-27  3:01   ` Joshua Watt
  0 siblings, 0 replies; 11+ messages in thread
From: Joshua Watt @ 2018-02-27  3:01 UTC (permalink / raw)
  To: openembedded-core

Changes to the icecc-create-env recipe should not cause all recipes to
rebuild just because the have inherited icecc.

Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
---
 meta/lib/oe/sstatesig.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py
index 3a8778eae01..6be9d32133a 100644
--- a/meta/lib/oe/sstatesig.py
+++ b/meta/lib/oe/sstatesig.py
@@ -29,7 +29,7 @@ def sstate_rundepfilter(siggen, fn, recipename, task, dep, depname, dataCache):
         return True
 
     # Quilt (patch application) changing isn't likely to affect anything
-    excludelist = ['quilt-native', 'subversion-native', 'git-native', 'ccache-native']
+    excludelist = ['quilt-native', 'subversion-native', 'git-native', 'ccache-native', 'icecc-create-env-native']
     if depname in excludelist and recipename != depname:
         return False
 
-- 
2.14.3



^ permalink raw reply related	[flat|nested] 11+ messages in thread

* ✗ patchtest: failure for "icecc.bbclass: Ignore more ice..." and 1 more (rev2)
  2018-02-26 22:30 [PATCH 1/2] icecc.bbclass: Ignore more icecream vars in hashes Joshua Watt
                   ` (2 preceding siblings ...)
  2018-02-27  3:01 ` [PATCH v2 1/2] icecc.bbclass: Ignore more icecream vars in hashes Joshua Watt
@ 2018-02-27  3:35 ` Patchwork
  2018-02-27  3:35 ` ✗ patchtest: failure for "icecc.bbclass: Ignore more ice..." and 1 more (rev3) Patchwork
                   ` (3 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2018-02-27  3:35 UTC (permalink / raw)
  To: Joshua Watt; +Cc: openembedded-core

== Series Details ==

Series: "icecc.bbclass: Ignore more ice..." and 1 more (rev2)
Revision: 2
URL   : https://patchwork.openembedded.org/series/11106/
State : failure

== Summary ==


Thank you for submitting this patch series to OpenEmbedded Core. This is
an automated response. Several tests have been executed on the proposed
series by patchtest resulting in the following failures:



* Patch            [2/2] Ignore icecc-create-env in task signature
 Issue             Shortlog does not follow expected format [test_shortlog_format] 
  Suggested fix    Commit shortlog (first line of commit message) should follow the format "<target>: <summary>"



If you believe any of these test results are incorrect, please reply to the
mailing list (openembedded-core@lists.openembedded.org) raising your concerns.
Otherwise we would appreciate you correcting the issues and submitting a new
version of the patchset if applicable. Please ensure you add/increment the
version number when sending the new version (i.e. [PATCH] -> [PATCH v2] ->
[PATCH v3] -> ...).

---
Guidelines:     https://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines
Test framework: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest
Test suite:     http://git.yoctoproject.org/cgit/cgit.cgi/patchtest-oe



^ permalink raw reply	[flat|nested] 11+ messages in thread

* ✗ patchtest: failure for "icecc.bbclass: Ignore more ice..." and 1 more (rev3)
  2018-02-26 22:30 [PATCH 1/2] icecc.bbclass: Ignore more icecream vars in hashes Joshua Watt
                   ` (3 preceding siblings ...)
  2018-02-27  3:35 ` ✗ patchtest: failure for "icecc.bbclass: Ignore more ice..." and 1 more (rev2) Patchwork
@ 2018-02-27  3:35 ` Patchwork
  2018-02-27 21:52 ` [PATCH v3 1/2] icecc.bbclass: Ignore more icecream vars in hashes Joshua Watt
                   ` (2 subsequent siblings)
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2018-02-27  3:35 UTC (permalink / raw)
  To: Joshua Watt; +Cc: openembedded-core

== Series Details ==

Series: "icecc.bbclass: Ignore more ice..." and 1 more (rev3)
Revision: 3
URL   : https://patchwork.openembedded.org/series/11106/
State : failure

== Summary ==


Thank you for submitting this patch series to OpenEmbedded Core. This is
an automated response. Several tests have been executed on the proposed
series by patchtest resulting in the following failures:



* Issue             Series does not apply on top of target branch [test_series_merge_on_head] 
  Suggested fix    Rebase your series on top of targeted branch
  Targeted branch  master (currently at b30153a157)

* Patch            [2/2] Ignore icecc-create-env in task signature
 Issue             Shortlog does not follow expected format [test_shortlog_format] 
  Suggested fix    Commit shortlog (first line of commit message) should follow the format "<target>: <summary>"



If you believe any of these test results are incorrect, please reply to the
mailing list (openembedded-core@lists.openembedded.org) raising your concerns.
Otherwise we would appreciate you correcting the issues and submitting a new
version of the patchset if applicable. Please ensure you add/increment the
version number when sending the new version (i.e. [PATCH] -> [PATCH v2] ->
[PATCH v3] -> ...).

---
Guidelines:     https://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines
Test framework: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest
Test suite:     http://git.yoctoproject.org/cgit/cgit.cgi/patchtest-oe



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH v3 1/2] icecc.bbclass: Ignore more icecream vars in hashes
  2018-02-26 22:30 [PATCH 1/2] icecc.bbclass: Ignore more icecream vars in hashes Joshua Watt
                   ` (4 preceding siblings ...)
  2018-02-27  3:35 ` ✗ patchtest: failure for "icecc.bbclass: Ignore more ice..." and 1 more (rev3) Patchwork
@ 2018-02-27 21:52 ` Joshua Watt
  2018-02-27 21:52   ` [PATCH v3 2/2] sstatesig: Ignore icecc-create-env in task sigs Joshua Watt
  2018-02-27 22:05 ` ✗ patchtest: failure for "icecc.bbclass: Ignore more ice..." and 1 more (rev4) Patchwork
  2018-02-27 22:05 ` ✗ patchtest: failure for "icecc.bbclass: Ignore more ice..." and 1 more (rev5) Patchwork
  7 siblings, 1 reply; 11+ messages in thread
From: Joshua Watt @ 2018-02-27 21:52 UTC (permalink / raw)
  To: openembedded-core

Changing ICECC_ENV_VERSION or select variables that the user can set to
control the behavior of icecc should not cause recipes to rebuild

Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
---
 meta/classes/icecc.bbclass | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/meta/classes/icecc.bbclass b/meta/classes/icecc.bbclass
index 36dcfbe6048..cab64f52703 100644
--- a/meta/classes/icecc.bbclass
+++ b/meta/classes/icecc.bbclass
@@ -30,7 +30,10 @@
 
 BB_HASHBASE_WHITELIST += "ICECC_PARALLEL_MAKE ICECC_DISABLED ICECC_USER_PACKAGE_BL \
     ICECC_USER_CLASS_BL ICECC_USER_PACKAGE_WL ICECC_PATH ICECC_ENV_EXEC \
-    ICECC_CARET_WORKAROUND ICECC_CFLAGS"
+    ICECC_CARET_WORKAROUND ICECC_CFLAGS ICECC_ENV_VERSION \
+    ICECC_DEBUG ICECC_LOGFILE ICECC_REPEAT_RATE ICECC_PREFERRED_HOST \
+    ICECC_CLANG_REMOTE_CPP ICECC_IGNORE_UNVERIFIED ICECC_TEST_SOCKET \
+    "
 
 ICECC_ENV_EXEC ?= "${STAGING_BINDIR_NATIVE}/icecc-create-env"
 
-- 
2.14.3



^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH v3 2/2] sstatesig: Ignore icecc-create-env in task sigs
  2018-02-27 21:52 ` [PATCH v3 1/2] icecc.bbclass: Ignore more icecream vars in hashes Joshua Watt
@ 2018-02-27 21:52   ` Joshua Watt
  0 siblings, 0 replies; 11+ messages in thread
From: Joshua Watt @ 2018-02-27 21:52 UTC (permalink / raw)
  To: openembedded-core

Changes to the icecc-create-env recipe should not cause all recipes to
rebuild just because the have inherited icecc.

Signed-off-by: Joshua Watt <JPEWhacker@gmail.com>
---
 meta/lib/oe/sstatesig.py | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/lib/oe/sstatesig.py b/meta/lib/oe/sstatesig.py
index 3a8778eae01..6be9d32133a 100644
--- a/meta/lib/oe/sstatesig.py
+++ b/meta/lib/oe/sstatesig.py
@@ -29,7 +29,7 @@ def sstate_rundepfilter(siggen, fn, recipename, task, dep, depname, dataCache):
         return True
 
     # Quilt (patch application) changing isn't likely to affect anything
-    excludelist = ['quilt-native', 'subversion-native', 'git-native', 'ccache-native']
+    excludelist = ['quilt-native', 'subversion-native', 'git-native', 'ccache-native', 'icecc-create-env-native']
     if depname in excludelist and recipename != depname:
         return False
 
-- 
2.14.3



^ permalink raw reply related	[flat|nested] 11+ messages in thread

* ✗ patchtest: failure for "icecc.bbclass: Ignore more ice..." and 1 more (rev4)
  2018-02-26 22:30 [PATCH 1/2] icecc.bbclass: Ignore more icecream vars in hashes Joshua Watt
                   ` (5 preceding siblings ...)
  2018-02-27 21:52 ` [PATCH v3 1/2] icecc.bbclass: Ignore more icecream vars in hashes Joshua Watt
@ 2018-02-27 22:05 ` Patchwork
  2018-02-27 22:05 ` ✗ patchtest: failure for "icecc.bbclass: Ignore more ice..." and 1 more (rev5) Patchwork
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2018-02-27 22:05 UTC (permalink / raw)
  To: Joshua Watt; +Cc: openembedded-core

== Series Details ==

Series: "icecc.bbclass: Ignore more ice..." and 1 more (rev4)
Revision: 4
URL   : https://patchwork.openembedded.org/series/11106/
State : failure

== Summary ==


Thank you for submitting this patch series to OpenEmbedded Core. This is
an automated response. Several tests have been executed on the proposed
series by patchtest resulting in the following failures:



* Patch            [2/2] Ignore icecc-create-env in task signature
 Issue             Shortlog does not follow expected format [test_shortlog_format] 
  Suggested fix    Commit shortlog (first line of commit message) should follow the format "<target>: <summary>"



If you believe any of these test results are incorrect, please reply to the
mailing list (openembedded-core@lists.openembedded.org) raising your concerns.
Otherwise we would appreciate you correcting the issues and submitting a new
version of the patchset if applicable. Please ensure you add/increment the
version number when sending the new version (i.e. [PATCH] -> [PATCH v2] ->
[PATCH v3] -> ...).

---
Guidelines:     https://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines
Test framework: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest
Test suite:     http://git.yoctoproject.org/cgit/cgit.cgi/patchtest-oe



^ permalink raw reply	[flat|nested] 11+ messages in thread

* ✗ patchtest: failure for "icecc.bbclass: Ignore more ice..." and 1 more (rev5)
  2018-02-26 22:30 [PATCH 1/2] icecc.bbclass: Ignore more icecream vars in hashes Joshua Watt
                   ` (6 preceding siblings ...)
  2018-02-27 22:05 ` ✗ patchtest: failure for "icecc.bbclass: Ignore more ice..." and 1 more (rev4) Patchwork
@ 2018-02-27 22:05 ` Patchwork
  7 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2018-02-27 22:05 UTC (permalink / raw)
  To: Joshua Watt; +Cc: openembedded-core

== Series Details ==

Series: "icecc.bbclass: Ignore more ice..." and 1 more (rev5)
Revision: 5
URL   : https://patchwork.openembedded.org/series/11106/
State : failure

== Summary ==


Thank you for submitting this patch series to OpenEmbedded Core. This is
an automated response. Several tests have been executed on the proposed
series by patchtest resulting in the following failures:



* Issue             Series does not apply on top of target branch [test_series_merge_on_head] 
  Suggested fix    Rebase your series on top of targeted branch
  Targeted branch  master (currently at b30153a157)

* Patch            [2/2] Ignore icecc-create-env in task signature
 Issue             Shortlog does not follow expected format [test_shortlog_format] 
  Suggested fix    Commit shortlog (first line of commit message) should follow the format "<target>: <summary>"



If you believe any of these test results are incorrect, please reply to the
mailing list (openembedded-core@lists.openembedded.org) raising your concerns.
Otherwise we would appreciate you correcting the issues and submitting a new
version of the patchset if applicable. Please ensure you add/increment the
version number when sending the new version (i.e. [PATCH] -> [PATCH v2] ->
[PATCH v3] -> ...).

---
Guidelines:     https://www.openembedded.org/wiki/Commit_Patch_Message_Guidelines
Test framework: http://git.yoctoproject.org/cgit/cgit.cgi/patchtest
Test suite:     http://git.yoctoproject.org/cgit/cgit.cgi/patchtest-oe



^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2018-02-27 22:05 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-26 22:30 [PATCH 1/2] icecc.bbclass: Ignore more icecream vars in hashes Joshua Watt
2018-02-26 22:30 ` [PATCH 2/2] Ignore icecc-create-env in task signature Joshua Watt
2018-02-26 23:02 ` ✗ patchtest: failure for "icecc.bbclass: Ignore more ice..." and 1 more Patchwork
2018-02-27  3:01 ` [PATCH v2 1/2] icecc.bbclass: Ignore more icecream vars in hashes Joshua Watt
2018-02-27  3:01   ` [PATCH v2 2/2] sstatesig: Ignore icecc-create-env in task sigs Joshua Watt
2018-02-27  3:35 ` ✗ patchtest: failure for "icecc.bbclass: Ignore more ice..." and 1 more (rev2) Patchwork
2018-02-27  3:35 ` ✗ patchtest: failure for "icecc.bbclass: Ignore more ice..." and 1 more (rev3) Patchwork
2018-02-27 21:52 ` [PATCH v3 1/2] icecc.bbclass: Ignore more icecream vars in hashes Joshua Watt
2018-02-27 21:52   ` [PATCH v3 2/2] sstatesig: Ignore icecc-create-env in task sigs Joshua Watt
2018-02-27 22:05 ` ✗ patchtest: failure for "icecc.bbclass: Ignore more ice..." and 1 more (rev4) Patchwork
2018-02-27 22:05 ` ✗ patchtest: failure for "icecc.bbclass: Ignore more ice..." and 1 more (rev5) Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.