File tree 2 files changed +5
-3
lines changed
2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change @@ -4,15 +4,16 @@ name: build
4
4
on :
5
5
push :
6
6
pull_request :
7
+ workflow_dispatch :
7
8
schedule :
8
9
- cron : ' 0 0 * * 0' # weekly
9
10
10
11
jobs :
11
12
build :
12
- runs-on : ubuntu-20 .04
13
+ runs-on : ubuntu-22 .04
13
14
steps :
14
15
- name : Checkout
15
- uses : actions/checkout@v2
16
+ uses : actions/checkout@v3
16
17
17
18
# This uses the ":stable" version of Verilator, you may prefer ":latest"
18
19
# We run make from inside the container, overriding default entry point (Verilator binary itself)
Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ VERILATOR_FLAGS += -cc --exe
42
42
# Generate makefile dependencies (not shown as complicates the Makefile)
43
43
# VERILATOR_FLAGS += -MMD
44
44
# Optimize
45
- VERILATOR_FLAGS += -x-assign 0
45
+ VERILATOR_FLAGS += -- x-assign 0
46
46
# Warn abount lint issues; may not want this on less solid designs
47
47
VERILATOR_FLAGS += -Wall
48
48
# Make waveforms
81
81
82
82
@echo
83
83
@echo "-- VERILATE ----------------"
84
+ $(VERILATOR) --version
84
85
$(VERILATOR) $(VERILATOR_FLAGS) $(VERILATOR_INPUT)
85
86
86
87
@echo
You can’t perform that action at this time.
0 commit comments