File: test.sh

package info (click to toggle)
rust-protoc 2.27.1-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 112 kB
  • sloc: sh: 9; makefile: 4
file content (15 lines) | stat: -rwxr-xr-x 265 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/bin/sh -e

cd $(dirname $0)

(
    echo "building protoc-gen-rust"
    cd ../protobuf-codegen
    cargo build --bin=protoc-gen-rust
)

echo "cargo check in test-protoc"
cd test-protoc
exec cargo check --features=$RUST_PROTOBUF_FEATURES

# vim: set ts=4 sw=4 et: