[WIP] configurable tcg builds #38
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
name: Renode Bazel Rules test | |
on: push | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- name: Build toolchain | |
run: | | |
bazel build @toolchain_renode//... | |
- name: Display renode help | |
run: | | |
bazel-out/k8-fastbuild-ST-19c30ace4401/bin/external/toolchain_renode/bazelout/net6.0/Renode.dll.sh.runfiles/__main__/external/toolchain_renode/bazelout/net6.0/Renode --help | |
- name: Run renode | |
run: | | |
bazel-out/k8-fastbuild-ST-19c30ace4401/bin/external/toolchain_renode/bazelout/net6.0/Renode.dll.sh.runfiles/__main__/external/toolchain_renode/bazelout/net6.0/Renode | |
- name: Run test | |
run: | | |
# FIXME: workaroud for missing libdl from self_contained csharp binary | |
sudo ln -s /usr/lib/x86_64-linux-gnu/libdl.so.2 /usr/lib/x86_64-linux-gnu/libdl.so | |
bazel test //examples/nxp-k64f:nxp-k64f-test | |
- name: Upload Bazel artifacts | |
uses: actions/upload-artifact@v2 | |
if: ${{ always() }} | |
with: | |
name: renode-bazel-artifacts | |
path: bazel-testlogs*/**/* |