-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
44 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: Build Renode | ||
description: Builds Renode from source from the specified repository and revision | ||
inputs: | ||
renode_git_repo: | ||
description: Renode git repository | ||
required: true | ||
default: https://github.com/renode/renode | ||
renode_git_ref: | ||
description: Renode git revision | ||
required: true | ||
default: master | ||
runs: | ||
using: composite | ||
steps: | ||
- run: | | ||
echo Building Renode ${RENODE_GIT_REPO} from ${RENODE_GIT_REPO} | ||
git clone ${RENODE_GIT_REPO} renode | ||
cd renode | ||
git checkout ${RENODE_GIT_REF} | ||
git submodule update --init --recursive | ||
shell: bash | ||
env: | ||
RENODE_GIT_REPO: ${{ inputs.renode_git_repo }} | ||
RENODE_GIT_REF: ${{ inputs.renode_git_ref }} | ||
- run: | | ||
sudo apt-get -qqy update | ||
sudo apt-get -y install --no-install-recommends mono-complete policykit-1 libgtk2.0-dev uml-utilities gtk-sharp2 | ||
./build.sh | ||
shell: bash | ||
working-directory: renode | ||
if: ${{ runner.os != 'Windows' }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters