Skip to content

Commit 8ceb537

Browse files
Merge pull request #14 from DenisBiryukov91/fix-pkg-path
Fix pkg path and remove Quic test
2 parents 24ecbe7 + 2fe399d commit 8ceb537

46 files changed

Lines changed: 135 additions & 92 deletions

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.github/workflows/ci.yml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -94,11 +94,6 @@ jobs:
9494
export LD_LIBRARY_PATH="/tmp/local/lib"
9595
make test_examples
9696
97-
- name: Test examples with QUIC
98-
run: |
99-
export LD_LIBRARY_PATH="/tmp/local/lib"
100-
make test_examples_quic
101-
10297
fmt:
10398
name: Check code format
10499
runs-on: ubuntu-latest

Makefile

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,3 @@ test:
5252
.PHONY: test_examples
5353
test_examples:
5454
python3 tests/test_examples.py $(BIN_DIR)
55-
56-
# Run examples tests QUIC
57-
.PHONY: test_examples_quic
58-
test_examples_quic:
59-
python3 tests/test_examples.py -l "quic/localhost:7449" -e "quic/localhost:7449" -c tests/quic.json5 $(BIN_DIR)

examples/utils/args.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ import (
1818
"fmt"
1919
"os"
2020
"strings"
21-
"zenoh-go/zenoh"
21+
22+
"github.com/eclipse-zenoh/zenoh-go/zenoh"
2223

2324
"github.com/spf13/pflag"
2425
)

examples/z_advanced_pub/z_advanced_pub.go

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,9 +19,11 @@ import (
1919
"os"
2020
"os/signal"
2121
"time"
22-
"zenoh-go/examples/utils"
23-
"zenoh-go/zenoh"
24-
"zenoh-go/zenoh/zenohext"
22+
23+
"github.com/eclipse-zenoh/zenoh-go/examples/utils"
24+
25+
"github.com/eclipse-zenoh/zenoh-go/zenoh"
26+
"github.com/eclipse-zenoh/zenoh-go/zenoh/zenohext"
2527

2628
"github.com/BooleanCat/option"
2729
"github.com/spf13/pflag"

examples/z_advanced_sub/z_advanced_sub.go

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,11 @@ import (
1818
"fmt"
1919
"os"
2020
"os/signal"
21-
"zenoh-go/examples/utils"
22-
"zenoh-go/zenoh"
23-
"zenoh-go/zenoh/zenohext"
21+
22+
"github.com/eclipse-zenoh/zenoh-go/examples/utils"
23+
24+
"github.com/eclipse-zenoh/zenoh-go/zenoh"
25+
"github.com/eclipse-zenoh/zenoh-go/zenoh/zenohext"
2426

2527
"github.com/BooleanCat/option"
2628
"github.com/spf13/pflag"

examples/z_bytes/z_bytes.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,9 @@ package main
1616

1717
import (
1818
"fmt"
19-
"zenoh-go/zenoh"
20-
"zenoh-go/zenoh/zenohext"
19+
20+
"github.com/eclipse-zenoh/zenoh-go/zenoh"
21+
"github.com/eclipse-zenoh/zenoh-go/zenoh/zenohext"
2122
)
2223

2324
func main() {

examples/z_delete/z_delete.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@ package main
1717
import (
1818
"fmt"
1919
"os"
20-
"zenoh-go/examples/utils"
21-
"zenoh-go/zenoh"
20+
21+
"github.com/eclipse-zenoh/zenoh-go/examples/utils"
22+
23+
"github.com/eclipse-zenoh/zenoh-go/zenoh"
2224

2325
"github.com/spf13/pflag"
2426
)

examples/z_get/z_get.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@ package main
1717
import (
1818
"fmt"
1919
"os"
20-
"zenoh-go/examples/utils"
21-
"zenoh-go/zenoh"
20+
21+
"github.com/eclipse-zenoh/zenoh-go/examples/utils"
22+
23+
"github.com/eclipse-zenoh/zenoh-go/zenoh"
2224

2325
"github.com/BooleanCat/option"
2426
"github.com/spf13/pflag"

examples/z_get_liveliness/z_get_liveliness.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@ package main
1717
import (
1818
"fmt"
1919
"os"
20-
"zenoh-go/examples/utils"
21-
"zenoh-go/zenoh"
20+
21+
"github.com/eclipse-zenoh/zenoh-go/examples/utils"
22+
23+
"github.com/eclipse-zenoh/zenoh-go/zenoh"
2224

2325
"github.com/spf13/pflag"
2426
)

examples/z_info/z_info.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,10 @@ package main
1717
import (
1818
"fmt"
1919
"os"
20-
"zenoh-go/examples/utils"
21-
"zenoh-go/zenoh"
20+
21+
"github.com/eclipse-zenoh/zenoh-go/examples/utils"
22+
23+
"github.com/eclipse-zenoh/zenoh-go/zenoh"
2224
)
2325

2426
func main() {

0 commit comments

Comments
 (0)