We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2b87096 commit cae7e62Copy full SHA for cae7e62
.github/workflows/cpp.yml
@@ -14,6 +14,9 @@ jobs:
14
build:
15
runs-on: ubuntu-latest
16
17
+ env:
18
+ ACTIONS_STEP_DEBUG: true
19
+
20
steps:
21
- name: Checkout code
22
uses: actions/checkout@v4
@@ -31,9 +34,12 @@ jobs:
31
34
- name: Install Dependencies
32
35
if: steps.cache-deps.outputs.cache-hit != 'true'
33
36
run: |
37
+ set -x
38
sudo apt-get install libopencv-dev
39
+ rm -rf systemc-3.0.0
40
git clone https://github.com/accellera-official/systemc.git systemc-3.0.0
41
cd systemc-3.0.0
42
+ ./config/bootstrap
43
mkdir -p objdir
44
cd objdir
45
export CXX=g++
0 commit comments