|
@@ -43,7 +43,7 @@ jobs:
|
|
|
|
|
|
# Not using matrix here because it would inflate job count too much. Check out and setup is done for every job and that makes build times way too long.
|
|
# Not using matrix here because it would inflate job count too much. Check out and setup is done for every job and that makes build times way too long.
|
|
- name: Build example_null (extra warnings, mingw 64-bit)
|
|
- name: Build example_null (extra warnings, mingw 64-bit)
|
|
- run: mingw32-make -C examples/example_null EXTRA_WARNINGS=1
|
|
|
|
|
|
+ run: mingw32-make -C examples/example_null WITH_EXTRA_WARNINGS=1
|
|
|
|
|
|
- name: Build example_null (extra warnings, msvc 64-bit)
|
|
- name: Build example_null (extra warnings, msvc 64-bit)
|
|
shell: cmd
|
|
shell: cmd
|
|
@@ -171,22 +171,22 @@ jobs:
|
|
- name: Build example_null (extra warnings, gcc 32-bit)
|
|
- name: Build example_null (extra warnings, gcc 32-bit)
|
|
run: |
|
|
run: |
|
|
make -C examples/example_null clean
|
|
make -C examples/example_null clean
|
|
- CXXFLAGS="$CXXFLAGS -m32 -Werror" make -C examples/example_null EXTRA_WARNINGS=1
|
|
|
|
|
|
+ CXXFLAGS="$CXXFLAGS -m32 -Werror" make -C examples/example_null WITH_EXTRA_WARNINGS=1
|
|
|
|
|
|
- name: Build example_null (extra warnings, gcc 64-bit)
|
|
- name: Build example_null (extra warnings, gcc 64-bit)
|
|
run: |
|
|
run: |
|
|
make -C examples/example_null clean
|
|
make -C examples/example_null clean
|
|
- CXXFLAGS="$CXXFLAGS -m64 -Werror" make -C examples/example_null EXTRA_WARNINGS=1
|
|
|
|
|
|
+ CXXFLAGS="$CXXFLAGS -m64 -Werror" make -C examples/example_null WITH_EXTRA_WARNINGS=1
|
|
|
|
|
|
- name: Build example_null (extra warnings, clang 32-bit)
|
|
- name: Build example_null (extra warnings, clang 32-bit)
|
|
run: |
|
|
run: |
|
|
make -C examples/example_null clean
|
|
make -C examples/example_null clean
|
|
- CXXFLAGS="$CXXFLAGS -m32 -Werror" CXX=clang++ make -C examples/example_null EXTRA_WARNINGS=1
|
|
|
|
|
|
+ CXXFLAGS="$CXXFLAGS -m32 -Werror" CXX=clang++ make -C examples/example_null WITH_EXTRA_WARNINGS=1
|
|
|
|
|
|
- name: Build example_null (extra warnings, clang 64-bit)
|
|
- name: Build example_null (extra warnings, clang 64-bit)
|
|
run: |
|
|
run: |
|
|
make -C examples/example_null clean
|
|
make -C examples/example_null clean
|
|
- CXXFLAGS="$CXXFLAGS -m64 -Werror" CXX=clang++ make -C examples/example_null EXTRA_WARNINGS=1
|
|
|
|
|
|
+ CXXFLAGS="$CXXFLAGS -m64 -Werror" CXX=clang++ make -C examples/example_null WITH_EXTRA_WARNINGS=1
|
|
|
|
|
|
- name: Build example_null (freetype)
|
|
- name: Build example_null (freetype)
|
|
run: |
|
|
run: |
|
|
@@ -260,7 +260,7 @@ jobs:
|
|
brew install sdl2
|
|
brew install sdl2
|
|
|
|
|
|
- name: Build example_null (extra warnings, clang 64-bit)
|
|
- name: Build example_null (extra warnings, clang 64-bit)
|
|
- run: make -C examples/example_null EXTRA_WARNINGS=1
|
|
|
|
|
|
+ run: make -C examples/example_null WITH_EXTRA_WARNINGS=1
|
|
|
|
|
|
- name: Build example_null (single file build)
|
|
- name: Build example_null (single file build)
|
|
run: |
|
|
run: |
|
|
@@ -358,6 +358,6 @@ jobs:
|
|
exit 0
|
|
exit 0
|
|
fi
|
|
fi
|
|
cd examples/example_null
|
|
cd examples/example_null
|
|
- pvs-studio-analyzer trace -- make EXTRA_WARNINGS=1
|
|
|
|
|
|
+ pvs-studio-analyzer trace -- make WITH_EXTRA_WARNINGS=1
|
|
pvs-studio-analyzer analyze -e ../../imstb_rectpack.h -e ../../imstb_textedit.h -e ../../imstb_truetype.h -l ../../pvs-studio.lic -o pvs-studio.log
|
|
pvs-studio-analyzer analyze -e ../../imstb_rectpack.h -e ../../imstb_textedit.h -e ../../imstb_truetype.h -l ../../pvs-studio.lic -o pvs-studio.log
|
|
plog-converter -a 'GA:1,2;OP:1' -t errorfile -w pvs-studio.log
|
|
plog-converter -a 'GA:1,2;OP:1' -t errorfile -w pvs-studio.log
|