You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: .github/workflows/cpp.yml
+29-8Lines changed: 29 additions & 8 deletions
Original file line number
Diff line number
Diff line change
@@ -12,17 +12,38 @@ on:
12
12
13
13
jobs:
14
14
build:
15
-
16
15
runs-on: ubuntu-latest
17
16
18
17
steps:
19
-
- uses: actions/checkout@v4
20
-
- name: Install OpenCV
21
-
run: sudo apt-get install -y libopencv-dev
22
-
- name: wget SystemC
23
-
run: wget https://github.com/accellera-official/systemc/archive/refs/tags/3.0.0.tar.gz && tar -xzf 3.0.0.tar.gz
24
-
- name: Install SystemC
25
-
run: cd systemc-3.0.0 && mkdir objdir && cd objdir && export CXX=g++ && ../configure --prefix=/usr/local/systemc-3.0.0 && make && make check && make install
0 commit comments