File tree Expand file tree Collapse file tree 4 files changed +56
-3
lines changed Expand file tree Collapse file tree 4 files changed +56
-3
lines changed Original file line number Diff line number Diff line change
1
+ name : bloom
2
+
3
+ on : [push, pull_request]
4
+
5
+ jobs :
6
+ build_linux :
7
+ name : " Ubuntu (${{ matrix.ros_distribution }})"
8
+
9
+ runs-on : ubuntu-latest
10
+
11
+ strategy :
12
+ matrix :
13
+ include :
14
+ - docker_image : ubuntu:20.04
15
+ ros_distribution : noetic
16
+
17
+ - docker_image : ubuntu:22.04
18
+ ros_distribution : humble
19
+
20
+ - docker_image : ubuntu:24.04
21
+ ros_distribution : jazzy
22
+
23
+ container :
24
+ image : ${{ matrix.docker_image }}
25
+
26
+ env :
27
+ DEBIAN_FRONTEND : noninteractive
28
+
29
+ steps :
30
+ - name : install core dependencies
31
+ run : |
32
+ apt update
33
+ apt install -y --no-install-recommends git ca-certificates
34
+
35
+ - uses : actions/checkout@v4
36
+
37
+ - uses : ros-tooling/setup-ros@v0.7
38
+
39
+ - name : install build tool dependencies
40
+ run : |
41
+ apt install -y --no-install-recommends devscripts equivs python3-bloom
42
+
43
+ - name : bloom
44
+ run : |
45
+ rosdep update
46
+ bloom-generate rosdebian --ros-distro ${{ matrix.ros_distribution }}
47
+ mk-build-deps
48
+ apt install -y --no-install-recommends ./ros-${{ matrix.ros_distribution }}-apriltag-build-deps_*_all.deb
49
+ dpkg-buildpackage -b
50
+
51
+ - name : install bloomed packages
52
+ run : |
53
+ apt install -y --no-install-recommends ../ros-${{ matrix.ros_distribution }}-apriltag_*.deb ../ros-${{ matrix.ros_distribution }}-apriltag-dbgsym_*.ddeb
Original file line number Diff line number Diff line change 1
1
cmake_minimum_required (VERSION 3.16)
2
- project (apriltag VERSION 3.4.1 LANGUAGES C)
2
+ project (apriltag VERSION 3.4.2 LANGUAGES C)
3
3
4
4
if (POLICY CMP0077)
5
5
cmake_policy (SET CMP0077 NEW)
Original file line number Diff line number Diff line change @@ -1148,7 +1148,7 @@ static matd_svd_t matd_svd_tall(matd_t *A, int flags)
1148
1148
assert (maxiters > 0 ); // reassure clang
1149
1149
int iter ;
1150
1150
1151
- double maxv ; // maximum non-zero value being reduced this iteration
1151
+ double maxv = 0 ; // maximum non-zero value being reduced this iteration
1152
1152
1153
1153
double tol = 1E-10 ;
1154
1154
Original file line number Diff line number Diff line change 2
2
<?xml-model href =" http://download.ros.org/schema/package_format3.xsd" schematypens =" http://www.w3.org/2001/XMLSchema" ?>
3
3
<package format =" 3" >
4
4
<name >apriltag</name >
5
- <version >3.4.1 </version >
5
+ <version >3.4.2 </version >
6
6
<description >AprilTag detector library</description >
7
7
8
8
<maintainer email =" mkrogius@umich.edu" >Max Krogius</maintainer >
You can’t perform that action at this time.
0 commit comments