https://github.com/stan-dev/stan
Revision 70970355a0fb6ffc572fda97b2d6002a0ac03c0f authored by Nicusor Serban on 20 March 2020, 21:48:55 UTC, committed by GitHub on 20 March 2020, 21:48:55 UTC
Moved verify changes from Jenkinsfile to Shared Libraries.
2 parent s e499868 + 966907b
Raw File
Tip revision: 70970355a0fb6ffc572fda97b2d6002a0ac03c0f authored by Nicusor Serban on 20 March 2020, 21:48:55 UTC
Merge pull request #2905 from stan-dev/fix-jenkins-replay-pr
Tip revision: 7097035
.gitignore
# /
/demo
/models
/test
/*.dSYM
/bin

# other binary
*.o
*.exe

# /doc/
/doc/api
/doc/*.pdf
/doc/*.txt

# temporary latex files
*.idx
*.ilg
*.ind
*.fdb_latexmk
*.fls

# temporary emacs files
*~
\#*#

# temporary vim files
*.swp

# depedencies files
*.d
*.hpp.d.*
.Rproj.user
stan.Rproj
.kdev4/
stan.kdev4
.Rapp.history

# tests: compiled models
/src/test/test-models/*.hpp
/src/test/test-models/*/*.hpp
/src/test/test-models/*/*/*.hpp
/src/test/test-models/*/*/*/*.hpp
/src/test/test-models/*/*/*/*/*.hpp
/src/test/test-models/*/*/*/*/*/*.hpp
/src/test/test-models/*/*/*/*/*/*/*.hpp
!/src/test/test-models/**/*.stan
!/src/test/test-models/**/.gitignore

# tests: generated agrad tests
/src/test/prob/*/*_generated_*_test.cpp

# For the Mac
*.DS_Store

# local make include
/make/local

*.gch

#clang-tidy fixes yaml
.clang-fixes.log

# Visual Studio Settings
.vscode/*

# clangd compiler database
compile_commands.json
back to top