Skip to content

Commit cae7e62

Browse files
committed
Adding missing step when compiling SystemC from repo clone
1 parent 2b87096 commit cae7e62

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

.github/workflows/cpp.yml

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
build:
1515
runs-on: ubuntu-latest
1616

17+
env:
18+
ACTIONS_STEP_DEBUG: true
19+
1720
steps:
1821
- name: Checkout code
1922
uses: actions/checkout@v4
@@ -31,9 +34,12 @@ jobs:
3134
- name: Install Dependencies
3235
if: steps.cache-deps.outputs.cache-hit != 'true'
3336
run: |
37+
set -x
3438
sudo apt-get install libopencv-dev
39+
rm -rf systemc-3.0.0
3540
git clone https://github.com/accellera-official/systemc.git systemc-3.0.0
3641
cd systemc-3.0.0
42+
./config/bootstrap
3743
mkdir -p objdir
3844
cd objdir
3945
export CXX=g++

0 commit comments

Comments
 (0)