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
This issue is tracked [here](https://github.com/ignitionrobotics/ign-tools/issues/8).
91
89
92
-
# Testing
93
-
94
-
After building, to run all tests:
95
-
96
-
cd build
97
-
make test
98
-
99
-
See [this tutorial](https://ignitionrobotics.org/api/gui/4.0/install.html) for
100
-
further instructions on how to disable testing, run test coverage, etc.
101
-
102
90
# Folder Structure
103
91
104
92
*`include/ignition/gui`: Contains all the files which will be installed, such as
@@ -139,7 +127,7 @@ Please see
139
127
140
128
# Versioning
141
129
142
-
This library uses [Semantic Versioning](https://semver.org/). Additionally, this library is part of the [Ignition Robotics project](https://ignitionrobotics.org) which periodically releases a versioned set of compatible and complimentary libraries. See the [Ignition Robotics website](https://ignitionrobotics.org) for version and release information.
130
+
This library uses [Semantic Versioning](https://semver.org/). Additionally, this library is part of the [Ignition project](https://ignitionrobotics.org) which periodically releases a versioned set of compatible and complimentary libraries. See the [Ignition website](https://ignitionrobotics.org) for version and release information.
We recommend following the binary install instructions to get up and running as
12
+
quickly and painlessly as possible.
18
13
19
-
The [Source Install](#source-install) instructions should be used if you need the very latest software improvements, if you need to modify the code, or if you plan to make a contribution.
14
+
The source install instructions should be used if you need the very latest
15
+
software improvements, if you need to modify the code, or if you plan to make a
16
+
contribution.
20
17
21
18
## Binary Install
22
19
20
+
### Ubuntu
21
+
23
22
On Ubuntu, it's possible to install Ignition GUI as follows:
24
23
25
24
Add OSRF packages:
@@ -35,27 +34,48 @@ Install Ignition GUI:
35
34
Be sure to replace `<#>` with a number value, such as 1 or 2, depending on
4. View the documentation by running the following command from the `build` directory.
120
+
121
+
```
122
+
firefox doxygen/html/index.html
123
+
```
124
+
125
+
# Testing
126
+
127
+
Follow these steps to run tests and static code analysis in your clone of this repository.
128
+
129
+
1. Follow the [source install instruction](#source-install).
130
+
131
+
2. Run tests.
132
+
133
+
```
134
+
make test
135
+
```
136
+
137
+
3. Static code checker.
138
+
139
+
```
140
+
make codecheck
141
+
```
142
+
143
+
See the [Writing Tests section of the contributor guide](https://ignitionrobotics.org/docs/all/contributing#writing-tests) for help creating or modifying tests.
0 commit comments