Skip to content

Commit

Permalink
fix: try build using clone
Browse files Browse the repository at this point in the history
  • Loading branch information
akhilender-bongirwar committed Dec 21, 2024
1 parent b48c23a commit 739c52f
Showing 1 changed file with 28 additions and 8 deletions.
36 changes: 28 additions & 8 deletions recipes/renode/recipe.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,27 @@ source:

build:
script: |
conda install -c antmicro renode
if [ -d "renode" ]; then
rm -rf renode
fi
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
Expand All @@ -26,12 +40,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
Expand Down

0 comments on commit 739c52f

Please sign in to comment.