From 9c95e5927ac195f4841cad2464a3466cd5420642 Mon Sep 17 00:00:00 2001 From: Florian Bartels Date: Fri, 21 Jun 2024 11:25:39 +0200 Subject: [PATCH 1/7] Switch to Zenoh 1.0.0 alpha 2 --- .github/workflows/main-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main-ci.yml b/.github/workflows/main-ci.yml index e90bac8..96beea0 100644 --- a/.github/workflows/main-ci.yml +++ b/.github/workflows/main-ci.yml @@ -16,7 +16,7 @@ jobs: with: repository: eclipse-zenoh/zenoh path: zenoh - ref: '0.11.0' + ref: 'release/1.0.0-alpha.2' - name: test Zenoh run: | set -x From 55108d398dade34c9f490e7797af833231c18203 Mon Sep 17 00:00:00 2001 From: Florian Bartels Date: Fri, 21 Jun 2024 11:32:19 +0200 Subject: [PATCH 2/7] Install Rust 1.75.0 --- scripts/test-zenoh.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/test-zenoh.sh b/scripts/test-zenoh.sh index 7be39b6..a18a8a9 100755 --- a/scripts/test-zenoh.sh +++ b/scripts/test-zenoh.sh @@ -34,5 +34,7 @@ if [[ "$*" == *"--only-one-test"* ]] ; then cd commons/zenoh-buffers fi +rustup install 1.75.0 +rustup target add aarch64-unknown-linux-gnu --toolchain 1.75.0 cargo t --target aarch64-unknown-linux-gnu --no-run cargo t --target aarch64-unknown-linux-gnu -j1 From a56fe05a277933faf0c09cdc1ac70d322d220510 Mon Sep 17 00:00:00 2001 From: Florian Bartels <108917393+flba-eb@users.noreply.github.com> Date: Thu, 27 Jun 2024 15:15:51 +0200 Subject: [PATCH 3/7] update to zenoh 0.11.0-dev-285-g2500e5a6 --- .github/workflows/main-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main-ci.yml b/.github/workflows/main-ci.yml index 96beea0..4f7eeaf 100644 --- a/.github/workflows/main-ci.yml +++ b/.github/workflows/main-ci.yml @@ -16,7 +16,7 @@ jobs: with: repository: eclipse-zenoh/zenoh path: zenoh - ref: 'release/1.0.0-alpha.2' + ref: 'release/0.11.0-dev-285-g2500e5a6' - name: test Zenoh run: | set -x From d23b03228843e75a6d8f7dd8d18683d6f795fed8 Mon Sep 17 00:00:00 2001 From: Florian Bartels <108917393+flba-eb@users.noreply.github.com> Date: Thu, 27 Jun 2024 15:17:38 +0200 Subject: [PATCH 4/7] Update main-ci.yml --- .github/workflows/main-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main-ci.yml b/.github/workflows/main-ci.yml index 4f7eeaf..ee80857 100644 --- a/.github/workflows/main-ci.yml +++ b/.github/workflows/main-ci.yml @@ -16,7 +16,7 @@ jobs: with: repository: eclipse-zenoh/zenoh path: zenoh - ref: 'release/0.11.0-dev-285-g2500e5a6' + ref: '0.11.0-dev-285-g2500e5a6' - name: test Zenoh run: | set -x From c382a561a29264138ca22db2a2d40215acef2683 Mon Sep 17 00:00:00 2001 From: Florian Bartels <108917393+flba-eb@users.noreply.github.com> Date: Thu, 27 Jun 2024 15:33:44 +0200 Subject: [PATCH 5/7] Update main-ci.yml --- .github/workflows/main-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main-ci.yml b/.github/workflows/main-ci.yml index ee80857..b03b3f3 100644 --- a/.github/workflows/main-ci.yml +++ b/.github/workflows/main-ci.yml @@ -16,7 +16,7 @@ jobs: with: repository: eclipse-zenoh/zenoh path: zenoh - ref: '0.11.0-dev-285-g2500e5a6' + ref: '1.0.0-alpha.3' - name: test Zenoh run: | set -x From f05b24aeb120d0a0abaf4cf0a19f0296183dadc3 Mon Sep 17 00:00:00 2001 From: Florian Bartels <108917393+flba-eb@users.noreply.github.com> Date: Mon, 15 Jul 2024 13:42:50 +0200 Subject: [PATCH 6/7] Update to 1.0.0-alpha.4 --- .github/workflows/main-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main-ci.yml b/.github/workflows/main-ci.yml index b03b3f3..e3e7c12 100644 --- a/.github/workflows/main-ci.yml +++ b/.github/workflows/main-ci.yml @@ -16,7 +16,7 @@ jobs: with: repository: eclipse-zenoh/zenoh path: zenoh - ref: '1.0.0-alpha.3' + ref: '1.0.0-alpha.4' - name: test Zenoh run: | set -x From 4e1b7a704b40f0b1384ea4f274953a1f674c14c5 Mon Sep 17 00:00:00 2001 From: Florian Bartels <108917393+flba-eb@users.noreply.github.com> Date: Sat, 20 Jul 2024 09:06:23 +0200 Subject: [PATCH 7/7] Remove installation of Rust 1.75.0, should be part of container --- scripts/test-zenoh.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/test-zenoh.sh b/scripts/test-zenoh.sh index a18a8a9..5b59505 100755 --- a/scripts/test-zenoh.sh +++ b/scripts/test-zenoh.sh @@ -34,7 +34,7 @@ if [[ "$*" == *"--only-one-test"* ]] ; then cd commons/zenoh-buffers fi -rustup install 1.75.0 -rustup target add aarch64-unknown-linux-gnu --toolchain 1.75.0 +# Compile first in parallel, but limit RAM usage by not exeucting the tests cargo t --target aarch64-unknown-linux-gnu --no-run +# Only execute one test at a time to limit RAM usage cargo t --target aarch64-unknown-linux-gnu -j1