Skip to content

Commit e01dca5

Browse files
committed
setup compiler
1 parent d3f3476 commit e01dca5

File tree

5 files changed

+15
-4
lines changed

5 files changed

+15
-4
lines changed

.github/workflows/main.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,11 @@ jobs:
1111
runs-on: ubuntu-latest
1212
timeout-minutes: 10
1313
steps:
14-
- uses: actions/checkout@v3
14+
- name: Checkout code and submodules
15+
uses: actions/checkout@v2
16+
with:
17+
submodules: 'recursive'
18+
1519
- name: Running build generation
1620
run: |
1721
make setup

.gitignore

-2
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,3 @@ cppcheckbuild/
77
*.a2
88
*.s1
99
*.s2
10-
11-
cpputest/

.gitmodules

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
[submodule "cpputest"]
2+
path = cpputest
3+
url = https://github.com/cpputest/cpputest.git

cpputest

Submodule cpputest added at 81eb8b8

scripts/setup.sh

+6-1
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
11
#!/bin/bash
22

3-
sudo apt install clang-format cpputest cppcheck
3+
sudo apt install clang-format cppcheck
4+
5+
cd cpputest
6+
autoreconf . -i
7+
./configure
8+
make tdd

0 commit comments

Comments
 (0)