From b07252b45f9f5129342a8a167ab209af2d5e7dd6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mikolai=20G=C3=BCtschow?= Date: Fri, 21 Feb 2025 10:30:00 +0100 Subject: [PATCH] build.yml: update links to RIOT examples --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 05d0f664..a0bd122b 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -97,7 +97,7 @@ jobs: - name: GNU build test run: | - make -CRIOT/examples/hello-world BUILDTEST_MAKE_REDIRECT='' buildtest + make -CRIOT/examples/basic/hello-world BUILDTEST_MAKE_REDIRECT='' buildtest env: BUILD_IN_DOCKER: 1 DOCKER_IMAGE: ${{ env.DOCKER_REGISTRY }}/riotbuild:latest @@ -121,7 +121,7 @@ jobs: - name: LLVM build test run: | - make -CRIOT/examples/hello-world BUILDTEST_MAKE_REDIRECT='' buildtest + make -CRIOT/examples/basic/hello-world BUILDTEST_MAKE_REDIRECT='' buildtest env: TOOLCHAIN: llvm BUILD_IN_DOCKER: 1 @@ -133,9 +133,9 @@ jobs: # Some of the above are executed by root, creating ~/.cargo/git as # that user, blocking downloads of own libraries. rm -rf ~/.cargo - make -CRIOT/examples/rust-hello-world BUILDTEST_MAKE_REDIRECT='' buildtest + make -CRIOT/examples/lang_support/official/rust-hello-world BUILDTEST_MAKE_REDIRECT='' buildtest # TODO: temporarily disabled (sock_udp.h not found) - #make -CRIOT/examples/rust-gcoap BUILDTEST_MAKE_REDIRECT='' buildtest + #make -CRIOT/examples/lang_support/official/rust-gcoap BUILDTEST_MAKE_REDIRECT='' buildtest env: BUILD_IN_DOCKER: 1 DOCKER_IMAGE: ${{ env.DOCKER_REGISTRY }}/riotbuild:latest