File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2424 buildTests : ' Tests'
2525
2626 steps :
27+ - name : Configure
28+ run : git config --global --add safe.directory "$GITHUB_WORKSPACE"
29+
2730 - name : Checkout
2831 uses : actions/checkout@v4
2932 with :
@@ -105,11 +108,6 @@ jobs:
105108 container : debian:11-slim
106109
107110 steps :
108- - name : Checkout
109- uses : actions/checkout@v4
110- with :
111- fetch-depth : 0
112-
113111 - name : Install dependencies
114112 run : |
115113 dpkg --add-architecture i386
@@ -121,6 +119,15 @@ jobs:
121119 git cmake rsync \
122120 g++ gcc
123121
122+ - name : Configure
123+ run : git config --global --add safe.directory "$GITHUB_WORKSPACE"
124+
125+ - name : Checkout
126+ uses : actions/checkout@v4
127+ with :
128+ submodules : recursive
129+ fetch-depth : 0
130+
124131 - name : Build and Run unittests
125132 run : |
126133 rm -rf build && CC=gcc CXX=g++ cmake -DCMAKE_BUILD_TYPE=Unittests -B build && cmake --build build -j8
You can’t perform that action at this time.
0 commit comments