-
Notifications
You must be signed in to change notification settings - Fork 4
50 lines (40 loc) · 1.1 KB
/
caravel_cocotb.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
name: Caravel Cocotb CI
on:
# Runs on Every Push
push:
# Runs on Pull Requests
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: 3.8
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Install dependencies
run: |
cd $GITHUB_WORKSPACE/cocotb
python3 -m pip install --upgrade pip
pip install -r requirements.txt
python3 -m pip install --upgrade --no-cache-dir volare
pip install flake8
- name: Run Flake8
run: flake8 $GITHUB_WORKSPACE/cocotb --config $GITHUB_WORKSPACE/cocotb/.flake8
- name: download docker
run: |
docker pull efabless/dv:cocotb
- name: Install caravel_cocotb
run: |
cd $GITHUB_WORKSPACE/cocotb
pip install .
- name: Run main.py
run: |
cd $GITHUB_WORKSPACE/cocotb/caravel_cocotb/CI
python3 main.py