Skip to content

Commit d0d8393

Browse files
committed
Merge branch 'develop' into feature/libsundials
2 parents 7e622c7 + 780d819 commit d0d8393

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

51 files changed

+1695
-1014
lines changed

.github/workflows/testing.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
fail-fast: false
2727
steps:
2828
- name: Check out source code
29-
uses: actions/checkout@v2
29+
uses: actions/checkout@v3
3030
with:
3131
submodules: true
3232
- name: Install clang++
@@ -47,7 +47,7 @@ jobs:
4747
fail-fast: false
4848
steps:
4949
- name: Check out source code
50-
uses: actions/checkout@v2
50+
uses: actions/checkout@v3
5151
with:
5252
submodules: true
5353
- name: Install clang++

Jenkinsfile

+6-3
Original file line numberDiff line numberDiff line change
@@ -414,9 +414,9 @@ pipeline {
414414
"""
415415
sh """
416416
cd performance-tests-cmdstan/cmdstan/stan
417-
./runTests.py src/test/integration/compile_standalone_functions_test.cpp
418-
./runTests.py src/test/integration/standalone_functions_test.cpp
419-
./runTests.py src/test/integration/multiple_translation_units_test.cpp
417+
python3 ./runTests.py src/test/integration/compile_standalone_functions_test.cpp
418+
python3 ./runTests.py src/test/integration/standalone_functions_test.cpp
419+
python3 ./runTests.py src/test/integration/multiple_translation_units_test.cpp
420420
"""
421421
}
422422
post { always { deleteDir() } }
@@ -503,6 +503,9 @@ pipeline {
503503
name: "Entire pipeline results",
504504
enabledForFailure: true,
505505
aggregatingResults : false,
506+
filters: [
507+
excludeFile('/lib/.*')
508+
],
506509
tools: [
507510
gcc4(id: "pipeline_gcc4", name: "GNU C Compiler"),
508511
clang(id: "pipeline_clang", name: "LLVM/Clang")

src/stan/io/cmd_line.hpp

-282
This file was deleted.

src/stan/io/ends_with.hpp

+4-4
Original file line numberDiff line numberDiff line change
@@ -7,12 +7,12 @@ namespace stan {
77
namespace io {
88

99
/**
10-
* Return true if the specified string starts with the specified
11-
* prefix.
10+
* Return true if the specified string ends with the specified
11+
* suffix.
1212
*
13-
* @param p prefix
13+
* @param p suffix
1414
* @param s string to test
15-
* @return true if s has p as a prefix
15+
* @return true if s has p as a suffix
1616
*/
1717
inline bool ends_with(const std::string& p, const std::string& s) {
1818
return s.size() >= p.size() && s.substr(s.size() - p.size()) == p;

0 commit comments

Comments
 (0)