f84711702d
Some checks failed
android / build (push) Successful in 1m32s
linux-arm-gcc / linux-gcc-arm (Debug) (push) Failing after 1m35s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Release) (push) Failing after 1m49s
linux-mips-gcc / linux-gcc-mipsel (Debug) (push) Failing after 1m44s
linux-aarch64-cpu-gcc / linux-gcc-aarch64 (Debug) (push) Failing after 2m1s
linux-arm-gcc / linux-gcc-arm (Release) (push) Failing after 1m55s
linux-x64-gcc / linux-gcc (Debug) (push) Failing after 29s
linux-mips64-gcc / linux-gcc-mips64el (Debug) (push) Failing after 1m23s
linux-x64-gcc / linux-gcc (Release) (push) Failing after 28s
linux-riscv64-gcc / linux-gcc-riscv64 (Debug) (push) Failing after 1m25s
linux-mips64-gcc / linux-gcc-mips64el (Release) (push) Failing after 1m49s
linux-mips-gcc / linux-gcc-mipsel (Release) (push) Failing after 2m26s
linux-riscv64-gcc / linux-gcc-riscv64 (Release) (push) Failing after 2m28s
linux-arm-gcc / linux-gcc-armhf (Debug) (push) Failing after 5m6s
linux-x86-gcc / linux-gcc (Release) (push) Failing after 3m29s
linux-x86-gcc / linux-gcc (Debug) (push) Failing after 5m54s
linux-arm-gcc / linux-gcc-armhf (Release) (push) Failing after 9m46s
60 lines
538 B
Plaintext
60 lines
538 B
Plaintext
# .gitignore - The Nova Project
|
|
|
|
# Prerequisites
|
|
*.d
|
|
|
|
# Object files
|
|
*.o
|
|
*.ko
|
|
*.obj
|
|
*.elf
|
|
|
|
# Linker output
|
|
*.ilk
|
|
*.map
|
|
*.exp
|
|
|
|
# Precompiled Headers
|
|
*.gch
|
|
*.pch
|
|
|
|
# Libraries
|
|
*.lib
|
|
*.a
|
|
*.la
|
|
*.lo
|
|
|
|
# Shared objects (inc. Windows DLLs)
|
|
*.dll
|
|
*.so
|
|
*.so.*
|
|
*.dylib
|
|
|
|
# Executables
|
|
*.exe
|
|
*.out
|
|
*.app
|
|
*.i*86
|
|
*.x86_64
|
|
*.hex
|
|
|
|
# Debug files
|
|
*.dSYM/
|
|
*.su
|
|
*.idb
|
|
*.pdb
|
|
|
|
# CMake
|
|
build/
|
|
cmake-build/
|
|
CMakeLists.txt.user
|
|
CMakeCache.txt
|
|
CMakeFiles
|
|
CMakeScripts
|
|
Makefile
|
|
cmake_install.cmake
|
|
install_manifest.txt
|
|
compile_commands.json
|
|
CTestTestfile.cmake
|
|
_deps
|