[#86890] test running new RTA #25
Workflow file for this run
This file contains hidden or 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: Reproduction | |
| on: | |
| push: | |
| workflow_dispatch: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-24.04 | |
| steps: | |
| - name: Clone repository | |
| uses: actions/checkout@v5 | |
| - name: Configure git and artifacts dir | |
| run: | | |
| git config --global user.name "Antmicro" | |
| git config --global user.email "contact@antmicro.com" | |
| # Fill up with your requirements | |
| - name: Prepare build dependencies | |
| run: sudo apt install curl -y | |
| - name: Prepare Python dependencies | |
| run: pip3 install -r requirements.txt | |
| # Provide a build script for your software | |
| # Make sure the build artifacts are to be found in the artifacts directory | |
| - name: Build software | |
| run: ./build.sh | |
| - name: Archive build results | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: build-results | |
| path: | | |
| artifacts | |
| - name: Run tests on latest Renode | |
| uses: antmicro/renode-test-action@86960-fix_running_in_act | |
| with: | |
| renode-revision: 'master' | |
| tests-to-run: 'test.robot' | |
| - name: Archive latest results | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-results-latest | |
| path: | | |
| report.html | |
| log.html | |
| robot_output.xml | |
| - name: Run tests on Renode stable release | |
| uses: antmicro/renode-test-action@v86960-fix_running_in_act | |
| with: | |
| renode-revision: 'v1.16.0' | |
| tests-to-run: 'test.robot' | |
| - name: Archive Renode release results | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: test-results-stable | |
| path: | | |
| report.html | |
| log.html | |
| robot_output.xml | |