Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Main to dev/1.1.0 #794

Merged
merged 38 commits into from
Nov 20, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
cd4550d
Update closure handlers documentaion (#736)
sashacmc Oct 14, 2024
c75c89a
Rename closure callback/dropper types (#739)
sashacmc Oct 14, 2024
6db8aa7
Remove legacy z_zint_t from public API (#741)
sashacmc Oct 15, 2024
95bc75c
Add `export "C"` for all header files (#740)
sashacmc Oct 15, 2024
a8962f8
add serialize from substr functions (#742)
DenisBiryukov91 Oct 16, 2024
7ccffa7
Rename z_loaned_hello_handler_t to z_closure_hello_callback_t (#743)
sashacmc Oct 16, 2024
bd5712e
Mark z_reply_replier_id as unstable (#745)
sashacmc Oct 16, 2024
54c430a
Add documentation about logging (#744)
sashacmc Oct 16, 2024
65f6927
Update README.md (#746)
sashacmc Oct 16, 2024
d80efd4
hardcode clang-format runner to Ubuntu24.04 (#748)
DenisBiryukov91 Oct 17, 2024
5f39d6a
fix build granularity (#747)
DenisBiryukov91 Oct 17, 2024
bb1a0d2
fix: badly named constant (#750)
jean-roland Oct 18, 2024
fc4fe28
fix packages
DenisBiryukov91 Oct 18, 2024
5ae9d57
merge main
DenisBiryukov91 Oct 18, 2024
0e534df
fix: update debian packaging
diogomatsubara Oct 19, 2024
2935b0d
fix: debian dev package name
diogomatsubara Oct 19, 2024
5735d91
Merge pull request #751 from DenisBiryukov91/fix-package-generation
Mallets Oct 21, 2024
45fcb32
Merge pull request #752 from ZettaScaleLabs/fix-pico-debian-package
Mallets Oct 21, 2024
9872197
fix: package version for releases (#753)
diogomatsubara Oct 21, 2024
8aa53e2
build shared lib for packages instead of static one (#757)
DenisBiryukov91 Oct 22, 2024
fe105a9
Fix z_task cleanup for platforms with pthread support (#759)
sashacmc Oct 22, 2024
6ca364b
Fix read/lease task cleanup (#760)
sashacmc Oct 22, 2024
d1e63e4
Align ID string representation with zenoh (lowercase) (#761)
sashacmc Oct 23, 2024
df70c74
Remove default parameters from z_closure (#755)
sashacmc Oct 24, 2024
9cc5d70
build both libraries:shared and static when packaging; (#766)
DenisBiryukov91 Oct 28, 2024
35f60d6
Publish debian packages (#769)
diogomatsubara Oct 31, 2024
c8e60ca
fix: Don't tag release branch during dry-run
diogomatsubara Nov 5, 2024
0fd9d9e
Replace exit with return in zephyr examples (#774)
sashacmc Nov 5, 2024
3c3569c
Add platform_common.c to zephyr CMakeLists.txt file
sashacmc Nov 6, 2024
7cffd69
Merge pull request #778 from ZettaScaleLabs/fix_zephyr_build_2
Mallets Nov 7, 2024
0085e43
Merge pull request #772 from ZettaScaleLabs/no-tag-in-dry-run
Mallets Nov 7, 2024
291a9cd
Rework Zenoh ID conversion
sashacmc Nov 8, 2024
9ab6439
Merge pull request #779 from ZettaScaleLabs/rework_zid_processing
Mallets Nov 8, 2024
f2c25c0
chore: Update org secrets (#782)
diogomatsubara Nov 12, 2024
1901e44
Implement liveliness support (#632)
sashacmc Nov 15, 2024
836257c
Mark liveliness API as unstable and disable by default
sashacmc Nov 18, 2024
caefa3f
Fix typo (#787)
sashacmc Nov 18, 2024
8b9d818
Merge pull request #788 from ZettaScaleLabs/mark_liveliness_as_unstable
Mallets Nov 18, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 4 additions & 2 deletions .github/workflows/build-check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,15 @@ jobs:

check_format:
name: Check codebase format with clang-format
runs-on: ubuntu-latest
runs-on: ubuntu-24.04
steps:
- name: Checkout code
uses: actions/checkout@v4

- name: Run clang-format dry-run
run: find include/ src/ tests/ examples/ -iname "*.ino" -o -iname "*.h" -o -iname "*.c" | xargs clang-format -n -Werror
run: |
clang-format --version
find include/ src/ tests/ examples/ -iname "*.ino" -o -iname "*.h" -o -iname "*.c" | xargs clang-format -n -Werror

c99_build:
name: Check c99 compilation
Expand Down
18 changes: 16 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,7 @@ jobs:
- name: Bump and tag project
run: bash ci/scripts/bump-and-tag.bash
env:
LIVE_RUN: ${{ inputs.live-run || false }}
VERSION: ${{ steps.create-release-branch.outputs.version }}
GIT_USER_NAME: eclipse-zenoh-bot
GIT_USER_EMAIL: [email protected]
Expand Down Expand Up @@ -150,6 +151,19 @@ jobs:
name: ${{ steps.build-linux.outputs.archive-deb }}
path: ${{ steps.build-linux.outputs.archive-deb }}

debian:
name: Publish Debian packages
needs: [tag, build-linux]
uses: eclipse-zenoh/ci/.github/workflows/release-crates-debian.yml@main
with:
no-build: true
live-run: ${{ inputs.live-run || false }}
version: ${{ needs.tag.outputs.version }}
repo: ${{ github.repository }}
branch: ${{ needs.tag.outputs.branch }}
installation-test: false
secrets: inherit

eclipse:
needs: [tag, build-macos, build-linux]
runs-on: ubuntu-latest
Expand All @@ -160,8 +174,8 @@ jobs:
version: ${{ needs.tag.outputs.version }}
ssh-host: [email protected]
ssh-host-path: /home/data/httpd/download.eclipse.org/zenoh/zenoh-pico
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}
ssh-passphrase: ${{ secrets.SSH_PASSPHRASE }}
ssh-private-key: ${{ secrets.ORG_GPG_PRIVATE_KEY }}
ssh-passphrase: ${{ secrets.ORG_GPG_PASSPHRASE }}
archive-patterns: '.*\.zip'

github:
Expand Down
Loading
Loading