fix perl packages #13
Workflow file for this run
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: testing_workflow | |
# execute this workflow automatically when a we push to master | |
on: [push] | |
jobs: | |
testing: | |
runs-on: ubuntu-latest | |
env: | |
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: 3.9 | |
- name: Install dependencies | |
run: | | |
sudo apt-get install cmake sudo iverilog make g++ perl cpanminus | |
cpan -i Verilog-Perl | |
pip install peakrdl | |
- name: run tests | |
run: | | |
mkdir build | |
cd build | |
cmake -DSOCMAKE_BUILD_TESTING=TRUE ../ | |
make check |