Home
About
Blog
Products
Forum
Support
Contact
Sunbelt Computer Software
PL/B Language Development and Support
Home
About
Blog
Products
Forum
Support
Contact
gtsam/.github/scripts/python.sh at develop · borglab/gtsam · GitHub
Skip to content
Navigation Menu
Sign in
Appearance settings
Platform
AI CODE CREATION
GitHub Copilot
Write better code with AI
GitHub Copilot app
Direct agents from issue to merge
MCP Registry
Integrate external tools
DEVELOPER WORKFLOWS
Actions
Automate any workflow
Codespaces
Instant dev environments
Issues
Plan and track work
Code Review
Manage code changes
Code Quality
Enforce quality at merge
APPLICATION SECURITY
GitHub Advanced Security
Find and fix vulnerabilities
Code security
Secure your code as you build
Secret protection
Stop leaks before they start
EXPLORE
Why GitHub
Documentation
Blog
Changelog
Marketplace
View all features
Solutions
BY COMPANY SIZE
Enterprises
Small and medium teams
Startups
Nonprofits
BY USE CASE
App Modernization
DevSecOps
DevOps
CI/CD
View all use cases
BY INDUSTRY
Healthcare
Financial services
Manufacturing
Government
View all industries
View all solutions
Resources
EXPLORE BY TOPIC
AI
Software Development
DevOps
Security
View all topics
EXPLORE BY TYPE
Customer stories
Events & webinars
Ebooks & reports
Business insights
GitHub Skills
SUPPORT & SERVICES
Documentation
Customer support
Community forum
Trust center
Partners
View all resources
Open Source
COMMUNITY
GitHub Sponsors
Fund open source developers
PROGRAMS
Security Lab
Maintainer Community
GitHub Stars
Archive Program
REPOSITORIES
Topics
Trending
Collections
Enterprise
ENTERPRISE SOLUTIONS
Enterprise platform
AI-powered developer platform
AVAILABLE ADD-ONS
GitHub Advanced Security
Enterprise-grade security features
Copilot for Business
Enterprise-grade AI features
Premium Support
Enterprise-grade 24/7 support
Pricing
Search
/
Sign in
Sign up
Appearance settings
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
Uh oh!
There was an error while loading.
Please reload this page
.
borglab
/
gtsam
Public
Notifications
You must be signed in to change notification settings
Fork
990
Star
3.7k
Code
Issues
3
Pull requests
5
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Files
Expand file tree
develop
Breadcrumbs
gtsam
/
.github
/
scripts
/
python.sh
Copy path
Blame
More file actions
Blame
More file actions
Latest commit
History
History
History
174 lines (151 loc) · 4.7 KB
develop
Breadcrumbs
gtsam
/
.github
/
scripts
/
python.sh
Copy path
Top
File metadata and controls
Code
Blame
174 lines (151 loc) · 4.7 KB
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
#!
/bin/bash
#
#########################################################
#
Build and test the GTSAM Python wrapper.
#
#########################################################
set
-x -e
#
install TBB with _debug.so files
function
install_tbb()
{
echo
install_tbb
if
[
"
$(
uname
)
"
==
"
Linux
"
]
;
then
sudo apt-get -y install libtbb-dev
elif
[
"
$(
uname
)
"
==
"
Darwin
"
]
;
then
brew install tbb
fi
}
if
[
-z
${PYTHON_VERSION+x}
]
;
then
echo
"
Please provide the Python version to build against!
"
exit
127
fi
export
PYTHON=
"
python
${PYTHON_VERSION}
"
NO_BOOST_BUILD=OFF
SCCACHE=OFF
BUILD_JOBS=
${BUILD_JOBS
:-
2}
function
install_dependencies()
{
if
[[
$(
uname
)
==
"
Darwin
"
]]
;
then
brew install wget
else
#
Install a system package required by our library
sudo apt-get install -y wget libicu-dev python3-pip python3-setuptools
fi
export
PATH=
$PATH
:
$(
$PYTHON
-c
"
import site; print(site.USER_BASE)
"
)
/bin
if
[
"
${GTSAM_WITH_TBB
:-
OFF}
"
==
"
ON
"
]
;
then
install_tbb
fi
}
function
build()
{
BUILD_PYBIND=
"
ON
"
USE_BOOST_FEATURES=
"
ON
"
ENABLE_BOOST_SERIALIZATION=
"
ON
"
if
[
"
${NO_BOOST_BUILD}
"
==
"
ON
"
]
;
then
USE_BOOST_FEATURES=
"
OFF
"
ENABLE_BOOST_SERIALIZATION=
"
OFF
"
fi
#
Add Boost hints on Windows
BOOST_CMAKE_ARGS=
"
"
if
[
"
${NO_BOOST_BUILD}
"
!=
"
ON
"
]
&&
[[
"
$OSTYPE
"
==
"
msys
"
||
"
$OSTYPE
"
==
"
win32
"
||
"
$OSTYPE
"
==
"
cygwin
"
]]
;
then
if
[
-n
"
${BOOST_ROOT}
"
]
;
then
BOOST_ROOT_UNIX=
$(
echo
"
$BOOST_ROOT
"
|
sed
'
s/\\/\//g
'
)
BOOST_CMAKE_ARGS=
"
-DBOOST_ROOT=
${BOOST_ROOT_UNIX}
"
if
[
-n
"
${BOOST_INCLUDEDIR}
"
]
;
then
BOOST_INCLUDEDIR_UNIX=
$(
echo
"
$BOOST_INCLUDEDIR
"
|
sed
'
s/\\/\//g
'
)
BOOST_CMAKE_ARGS=
"
${BOOST_CMAKE_ARGS}
-DBOOST_INCLUDEDIR=
${BOOST_INCLUDEDIR_UNIX}
"
fi
if
[
-n
"
${BOOST_LIBRARYDIR}
"
]
;
then
BOOST_LIBRARYDIR_UNIX=
$(
echo
"
$BOOST_LIBRARYDIR
"
|
sed
'
s/\\/\//g
'
)
BOOST_CMAKE_ARGS=
"
${BOOST_CMAKE_ARGS}
-DBOOST_LIBRARYDIR=
${BOOST_LIBRARYDIR_UNIX}
"
fi
fi
fi
SCCACHE_CMAKE_ARGS=
"
"
if
[
"
${SCCACHE}
"
==
"
ON
"
]
;
then
SCCACHE_CMAKE_ARGS=
"
-DCMAKE_C_COMPILER_LAUNCHER=sccache -DCMAKE_CXX_COMPILER_LAUNCHER=sccache
"
fi
cmake
$GITHUB_WORKSPACE
\
-B build -G Ninja \
-DCMAKE_BUILD_TYPE=
${CMAKE_BUILD_TYPE}
\
-DGTSAM_BUILD_TESTS=
${GTSAM_BUILD_TESTS
:-
OFF}
\
-DGTSAM_SLOW_BUT_CORRECT_BETWEENFACTOR=ON \
-DGTSAM_BUILD_UNSTABLE=
${GTSAM_BUILD_UNSTABLE
:-
ON}
\
-DGTSAM_USE_QUATERNIONS=OFF \
-DGTSAM_WITH_TBB=
${GTSAM_WITH_TBB
:-
OFF}
\
-DGTSAM_BUILD_EXAMPLES_ALWAYS=OFF \
-DGTSAM_BUILD_WITH_MARCH_NATIVE=OFF \
-DGTSAM_BUILD_WITH_PRECOMPILED_HEADERS=OFF \
-DGTSAM_BUILD_PYTHON=
${BUILD_PYBIND}
\
-DGTSAM_UNSTABLE_BUILD_PYTHON=
${GTSAM_BUILD_UNSTABLE
:-
ON}
\
-DGTSAM_PYTHON_VERSION=
$PYTHON_VERSION
\
-DPYTHON_EXECUTABLE:FILEPATH=
$(
which
$PYTHON
)
\
-DGTSAM_USE_BOOST_FEATURES=
${USE_BOOST_FEATURES}
\
-DGTSAM_ENABLE_BOOST_SERIALIZATION=
${ENABLE_BOOST_SERIALIZATION}
\
-DGTSAM_ALLOW_DEPRECATED_SINCE_V43=OFF \
-DCMAKE_INSTALL_PREFIX=
$GITHUB_WORKSPACE
/gtsam_install \
$BOOST_CMAKE_ARGS
\
$SCCACHE_CMAKE_ARGS
#
Unset environment variables so sccache can reuse caches.
unset
PYTHON
unset
PYTHON_VERSION
if
[
"
${NO_BOOST_BUILD}
"
==
"
ON
"
]
;
then
#
Build only wrapper targets for the no-Boost verification lane.
cmake --build build -j
"
${BUILD_JOBS}
"
--target gtsam_py gtsam_unstable_py
else
#
Limit parallelism so that Actions does not run out of resources.
cmake --build build -j
"
${BUILD_JOBS}
"
cmake --build build --target python-install
fi
}
function
test()
{
if
[
"
${NO_BOOST_BUILD}
"
==
"
ON
"
]
;
then
if
[[
"
$OSTYPE
"
==
"
msys
"
||
"
$OSTYPE
"
==
"
win32
"
||
"
$OSTYPE
"
==
"
cygwin
"
]]
;
then
PYTHON_BUILD_DIRECTORY=
$(
cygpath -w
"
$GITHUB_WORKSPACE
/build/python
"
)
export
PYTHONPATH=
"
${PYTHON_BUILD_DIRECTORY}${PYTHONPATH
:
+;
$PYTHONPATH
}
"
else
export
PYTHONPATH=
"
$GITHUB_WORKSPACE
/build/python
${PYTHONPATH
:
+
:
$PYTHONPATH
}
"
fi
fi
cd
$GITHUB_WORKSPACE
/python/gtsam/tests
$PYTHON
-m unittest discover -v
cd
$GITHUB_WORKSPACE
cd
$GITHUB_WORKSPACE
/python/gtsam_unstable/tests
$PYTHON
-m unittest discover -v
cd
$GITHUB_WORKSPACE
#
cmake --build build --target python-test
#
cmake --build build --target python-test-unstable
}
#
Parse optional flags.
if
[
$#
-lt
1 ]
;
then
echo
"
Usage:
$0
{-d|-b|-t} [--no-boost]
"
exit
2
fi
ACTION=
"
$1
"
shift
while
[
$#
-gt
0 ]
;
do
case
"
$1
"
in
--no-boost)
NO_BOOST_BUILD=ON
;;
--sccache)
SCCACHE=ON
;;
*
)
echo
"
Unknown option:
$1
"
exit
2
;;
esac
shift
done
#
select between build or test
case
$ACTION
in
-d)
install_dependencies
;;
-b)
build
;;
-t)
test
;;
esac
You can’t perform that action at this time.