-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove warnings using ZMQ 4.3.1 or greater. * Do not use ZMQ_CPP11 * Win debugging. * backport improved compiler support for std::filesystem * Close branch backport_compiler_filesystem * Restore original Playback::Start and add overload with new parameter to fix ABI * bump to 7.2.2 and update changelog * Close branch fix_abi_7 * Write to disk from a background thread in log recorder * Update Changelog * Move `dataWriterState = true` to Recorder::Implementation::DataWriterThread() thread. * Revert moving dataWriterState * Failing test with incorrect time stamps * Correctly record message reception time stamp * Reorder functions * Specify buffer size in MB rather than number of elements in the data queue * Flush any remaining data to log file when stopping the Recorder * Codecheck. The rvalue ref is used to ensure that std::vector is always moved * Version update * Added tag ignition-transport7_7.3.0~pre1 for changeset 173fae6c362d * recorder.cc: include <optional> * Add console message to indicate buffer being flushed * Add <numeric> * Close branch async_recorder * Prepare for 7.3.0 * Added tag ignition-transport7_7.3.0 for changeset 367d4f1bfcf7 * Configurable buffer sizes. * Fix typo. * Changelog. * Clarify high water mark policy. * Tweak documentation and error messages. * Close branch issue_116_transport7 * fix line lengths * Close branch codecheck7 * Update default values for the high water marks * Update buffer default values * Changelog.md edited online with Bitbucket * Close branch default_hwm * Adding connection message. * ConnectionMsg implementation. * Test * No control socket. * Preserve ABI. * Discard registrations when needed. * Tweaks. * Changelog * Fix issue #114. * Close branch discovery_extended_p2 * 7.4.0 * Move changelog entry * Close branch ign-transport7-4 * Added tag ignition-transport7_7.4.0 for changeset 083e7bf41080 * Protobuf warnings * Close branch proto_deprecations * Close branch issue_111 * Windows warnings * revert commit to release branch * Fix version for send_falgs command * Close branch ign-transport7_fix_send_flags * Backport pull request #441 * updates * Added another check * Close branch issue_118 * mv hgignore Signed-off-by: claireyywang <[email protected]> * add gitignore Signed-off-by: claireyywang <[email protected]> * [ign-transport7] Update BitBucket links (#123) * [ign-transport7] Update BitBucket links Signed-off-by: Louise Poubel <[email protected]> * changelog pull-requests * Apply suggestions from code review * Update tutorials/07_relay.md Co-authored-by: Marya Belanger <[email protected]> * [ign-transport7] Workflow updates (#132) * [ign-transport7] Workflow updates Signed-off-by: Louise Poubel <[email protected]> * Helper function to get a valid topic name (#153) Signed-off-by: Louise Poubel <[email protected]> * Remove Windows warnings (#151) Signed-off-by: Carlos Aguero <[email protected]> * Remove warnings on Homebrew (#150) Signed-off-by: Carlos Aguero <[email protected]> Co-authored-by: Louise Poubel <[email protected]> * Bump to 7.5.0 (#156) Signed-off-by: Louise Poubel <[email protected]> * Modernize actions CI (#158) Signed-off-by: Louise Poubel <[email protected]> * remove ci-bionic Signed-off-by: Louise Poubel <[email protected]> * add focal Signed-off-by: Louise Poubel <[email protected]> * msgs5 Signed-off-by: Louise Poubel <[email protected]> * Suppress focal-specific warnings (#159) * Suppress focal-specific warnings Signed-off-by: Michael Carroll <[email protected]> * Warn when lsb_release isn't present Signed-off-by: Michael Carroll <[email protected]> * Adding header guard. Signed-off-by: Carlos Agüero <[email protected]> * Include correct header file for version check Signed-off-by: Michael Carroll <[email protected]> * Added more debug output Signed-off-by: Nate Koenig <[email protected]> * Fix focal test and codecheck Signed-off-by: Nate Koenig <[email protected]> * Change endtime expectation Signed-off-by: Carlos Agüero <[email protected]> Co-authored-by: Carlos Agüero <[email protected]> Co-authored-by: Nate Koenig <[email protected]> Co-authored-by: Carlos Aguero <[email protected]> Co-authored-by: Steve Peters <[email protected]> Co-authored-by: Steve Peters <[email protected]> Co-authored-by: Carlos Agüero <[email protected]> Co-authored-by: Addisu Z. Taddese <[email protected]> Co-authored-by: Nate Koenig <[email protected]> Co-authored-by: Carlos Aguero <[email protected]> Co-authored-by: Jose Luis Rivero <[email protected]> Co-authored-by: claireyywang <[email protected]> Co-authored-by: Marya Belanger <[email protected]> Co-authored-by: Michael Carroll <[email protected]> Co-authored-by: Nate Koenig <[email protected]>
- Loading branch information
1 parent
d4420b8
commit d826963
Showing
14 changed files
with
174 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
libignition-cmake2-dev | ||
libignition-math6-dev | ||
libignition-msgs5-dev | ||
libignition-tools-dev | ||
libprotobuf-dev | ||
libprotoc-dev | ||
libsqlite3-dev | ||
libzmq3-dev | ||
pkg-config | ||
protobuf-compiler | ||
uuid-dev |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: Ubuntu CI | ||
|
||
on: [push] | ||
|
||
jobs: | ||
bionic-ci: | ||
runs-on: ubuntu-latest | ||
name: Ubuntu Bionic CI | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Compile and test | ||
id: ci | ||
uses: ignition-tooling/action-ignition-ci@master | ||
with: | ||
codecov-token: ${{ secrets.CODECOV_TOKEN }} | ||
focal-ci: | ||
runs-on: ubuntu-latest | ||
name: Ubuntu Focal CI | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
- name: Compile and test | ||
id: ci | ||
uses: ignition-tooling/action-ignition-ci@focal | ||
with: | ||
codecov-token: ${{ secrets.CODECOV_TOKEN }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters