From cf9cb0e13fefb3f59820be95a7234b6c50b45cc0 Mon Sep 17 00:00:00 2001 From: Akhilender Bongirwar Date: Sat, 21 Dec 2024 20:15:13 +0530 Subject: [PATCH] fix: try build using clone --- recipes/renode/recipe.yaml | 33 +++++++++++++++++++++++++-------- 1 file changed, 25 insertions(+), 8 deletions(-) diff --git a/recipes/renode/recipe.yaml b/recipes/renode/recipe.yaml index 958e237..b2fa1aa 100644 --- a/recipes/renode/recipe.yaml +++ b/recipes/renode/recipe.yaml @@ -11,13 +11,24 @@ source: build: script: | - conda install -c antmicro renode + rm -rf renode + git clone https://github.com/renode/renode.git + cd renode + git checkout v${{ version }} + + ./build.sh -p + mkdir -p $PREFIX/bin - cp $(conda info --base)/envs/$(conda info --envs | grep '*' | awk '{print $1}')/bin/renode $PREFIX/bin/renode + cp output/bin/Release/Renode $PREFIX/bin/renode requirements: build: - - conda + - ${{ compiler('cxx') }} + - mono + - make + - coreutils + - python + - pip - if: linux then: - libudev @@ -26,12 +37,18 @@ requirements: then: - gtk3 - libclang - - if: win - then: - - mono - - dotnet host: - - conda + - mono + - dotnet + - python + - if: linux + then: + - libudev + - libclang + - if: osx + then: + - gtk3 + - libclang run: - mono - python