From ed1393969b7c25d99767b139ff27429d8e699715 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Tue, 8 Feb 2022 11:55:51 +0100 Subject: [PATCH 1/7] .murdock: limit builds --- .murdock | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.murdock b/.murdock index 5c7f147bea..c40dead6c2 100755 --- a/.murdock +++ b/.murdock @@ -1,9 +1,9 @@ #!/bin/sh # uncomment and change this to limit builds, e.g., -#export BOARDS="samr21-xpro native" +export BOARDS="samr21-xpro native" # and / or -#export APPS="examples/hello-world tests/unittests" +export APPS="examples/hello-world tests/unittests" # : ${TEST_BOARDS_AVAILABLE:="esp32-wroom-32 samr21-xpro"} From d5c859dcc02bed2b2987f3a5ec84a358eca91625 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Sun, 5 Sep 2021 14:46:18 +0200 Subject: [PATCH 2/7] add .murdock.yml --- .murdock.yml | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 .murdock.yml diff --git a/.murdock.yml b/.murdock.yml new file mode 100644 index 0000000000..4347d3332e --- /dev/null +++ b/.murdock.yml @@ -0,0 +1,11 @@ +push: + tags: + - 'v(\d+\.)?(\d+\.)?(\*|\d+)' + branches: + - webhook_pushes + +pr: + enable_comments: True + +commit: + skip_keywords: ["ci: skip", "ci: no", "ci: ignore"] From 552bb242213c1629a223fa16c86c38a52d94d544 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Tue, 8 Feb 2022 21:04:54 +0100 Subject: [PATCH 3/7] .murdock: add more boards --- .murdock | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.murdock b/.murdock index c40dead6c2..d38284c558 100755 --- a/.murdock +++ b/.murdock @@ -1,7 +1,7 @@ #!/bin/sh # uncomment and change this to limit builds, e.g., -export BOARDS="samr21-xpro native" +export BOARDS="samr21-xpro native nucleo-l073rz hifive1b" # and / or export APPS="examples/hello-world tests/unittests" From 3d2d242d2cdf0e94839529da61f9ea54b507b3f9 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Wed, 9 Feb 2022 09:05:14 +0100 Subject: [PATCH 4/7] examples/hello-world: make it fail --- examples/hello-world/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hello-world/main.c b/examples/hello-world/main.c index f51bf8c0a0..d08f80e2d0 100644 --- a/examples/hello-world/main.c +++ b/examples/hello-world/main.c @@ -23,7 +23,7 @@ int main(void) { - puts("Hello World!"); + puts("Hello World!") printf("You are running RIOT on a(n) %s board.\n", RIOT_BOARD); printf("This board features a(n) %s MCU.\n", RIOT_MCU); From d35a13f08cddc696e5c4e5be653ec4df60ee75e1 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Wed, 9 Feb 2022 11:26:03 +0100 Subject: [PATCH 5/7] Revert "examples/hello-world: make it fail" This reverts commit 3d2d242d2cdf0e94839529da61f9ea54b507b3f9. --- examples/hello-world/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hello-world/main.c b/examples/hello-world/main.c index d08f80e2d0..f51bf8c0a0 100644 --- a/examples/hello-world/main.c +++ b/examples/hello-world/main.c @@ -23,7 +23,7 @@ int main(void) { - puts("Hello World!") + puts("Hello World!"); printf("You are running RIOT on a(n) %s board.\n", RIOT_BOARD); printf("This board features a(n) %s MCU.\n", RIOT_MCU); From ecd61ddb803a779ee0e0605f8c1d0e83dac6b806 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Wed, 9 Feb 2022 11:49:55 +0100 Subject: [PATCH 6/7] Revert "Revert "examples/hello-world: make it fail"" This reverts commit d35a13f08cddc696e5c4e5be653ec4df60ee75e1. --- examples/hello-world/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hello-world/main.c b/examples/hello-world/main.c index f51bf8c0a0..d08f80e2d0 100644 --- a/examples/hello-world/main.c +++ b/examples/hello-world/main.c @@ -23,7 +23,7 @@ int main(void) { - puts("Hello World!"); + puts("Hello World!") printf("You are running RIOT on a(n) %s board.\n", RIOT_BOARD); printf("This board features a(n) %s MCU.\n", RIOT_MCU); From d217527a3249ec6325be0154b0605f370a0645fd Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Wed, 9 Feb 2022 12:13:54 +0100 Subject: [PATCH 7/7] Revert "Revert "Revert "examples/hello-world: make it fail""" This reverts commit ecd61ddb803a779ee0e0605f8c1d0e83dac6b806. --- examples/hello-world/main.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/hello-world/main.c b/examples/hello-world/main.c index d08f80e2d0..f51bf8c0a0 100644 --- a/examples/hello-world/main.c +++ b/examples/hello-world/main.c @@ -23,7 +23,7 @@ int main(void) { - puts("Hello World!") + puts("Hello World!"); printf("You are running RIOT on a(n) %s board.\n", RIOT_BOARD); printf("This board features a(n) %s MCU.\n", RIOT_MCU);