From 8a718141e4a714cba858ee3c0c528756710b6ea1 Mon Sep 17 00:00:00 2001 From: Bram Oosterhuis Date: Wed, 25 Oct 2023 14:26:52 +0200 Subject: [PATCH] Update Build Thunder on Yocto.yml --- .github/workflows/Build Thunder on Yocto.yml | 24 +++++++++++++++----- 1 file changed, 18 insertions(+), 6 deletions(-) diff --git a/.github/workflows/Build Thunder on Yocto.yml b/.github/workflows/Build Thunder on Yocto.yml index d6fe940..0f97b76 100644 --- a/.github/workflows/Build Thunder on Yocto.yml +++ b/.github/workflows/Build Thunder on Yocto.yml @@ -52,17 +52,29 @@ jobs: path : poky - name: Get openembedded-core - run: | - git clone -b ${{matrix.yocto_version}} https://git.openembedded.org/openembedded-core + uses: actions/checkout@v4 + with: + github-server-url: 'https://git.openembedded.org' + repository: git/openembedded-core + ref: ${{matrix.yocto_version}} + path : openembedded-core - name: Get meta-openembedded - run: | - git clone -b ${{matrix.yocto_version}} https://git.openembedded.org/meta-openembedded + uses: actions/checkout@v4 + with: + github-server-url: 'https://git.openembedded.org' + repository: git/meta-openembedded + ref: ${{matrix.yocto_version}} + path : meta-openembedded - name: Get meta-raspberrypi BSP if: contains(${{matrix.machine}}, 'raspberrypi') - run: | - git clone -b ${{matrix.yocto_version}} https://git.yoctoproject.org/meta-raspberrypi + uses: actions/checkout@v4 + with: + github-server-url: 'https://git.yoctoproject.org' + repository: git/meta-raspberrypi + ref: ${{matrix.yocto_version}} + path : meta-raspberrypi - name: Get meta-thunder-framework uses: actions/checkout@v4