File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -25,19 +25,19 @@ jobs:
25
25
sudo apt install -y cppcheck cpputest doxygen avr-libc gcc-avr graphviz
26
26
sudo pip3 install cpp-coveralls
27
27
pip3 install --user cpp-coveralls
28
-
28
+
29
29
# Runs a set of commands using the runners shell
30
30
- name : Building documentation
31
31
run : |
32
32
make docs 1> /dev/null
33
-
33
+
34
34
#
35
35
- name : Building via gcc and running unit tests
36
36
run : |
37
37
make ARCH=linux EXTRA_CPPFLAGS="--coverage" SDL_EMULATION=y check
38
38
make clean
39
39
make ARCH=linux EXTRA_CPPFLAGS="--coverage" coverage
40
-
40
+
41
41
- name : Upload coverage statistics
42
42
uses : coverallsapp/github-action@master
43
43
with :
@@ -48,13 +48,13 @@ jobs:
48
48
# echo -e "service_name: circle-ci\n" > .coveralls.yml \
49
49
# && TRAVIS_JOB_ID="#${GITHUB_RUN_NUMBER}" COVERALLS_REPO_TOKEN=4Ia7t9YDo22zQcFEnMYLh1tiWCRlBJlhk coveralls -b . \
50
50
# --exclude docs --exclude extra --exclude unittest --exclude bld --exclude tools --exclude examples --gcov-options '\-lp'
51
-
51
+
52
52
- name : Building via clang
53
53
run : |
54
54
make clean
55
55
CPPFLAGS="-I/usr/include/SDL2" CC=clang CXX=clang++ LD=clang++ make ARCH=linux SDL_EMULATION=y check
56
56
make cppcheck
57
-
57
+
58
58
- name : Building for AVR
59
59
run : |
60
60
make clean
Original file line number Diff line number Diff line change 8
8
#
9
9
mkdir -p ~ /esp
10
10
# Switching to 4.3 version, since v5.0-dev doesn't support Makefiles anymore
11
- git clone -b v4.3 --recursive https://github.com/espressif/esp-idf.git ~ /esp/esp-idf
11
+ git clone -b v4.4.7 --recursive https://github.com/espressif/esp-idf.git ~ /esp/esp-idf
12
12
# git clone --recursive https://github.com/espressif/esp-idf.git ~/esp/esp-idf
13
13
fi
14
14
You can’t perform that action at this time.
0 commit comments