• Home
  • Raw
  • Download

Lines Matching +full:set +full:- +full:version

5   $1 -Iprotos/src -I../../../src/ --csharp_out=src/Google.Protobuf.Test \
6 --csharp_opt=base_namespace=Google.Protobuf \
11 $1 -Iprotos/csharp --csharp_out=src/Google.Protobuf.Test \
12 --csharp_opt=base_namespace=UnitTest.Issues \
15 $2 -Iprotos/src --csharp_out=src/Google.Protobuf.Test \
16 --csharp_opt=base_namespace=Google.Protobuf \
23 dotnet build -c Release src/Google.Protobuf/Google.Protobuf.csproj
24 dotnet build -c Release src/Google.Protobuf.Test/Google.Protobuf.Test.csproj
25 dotnet run -c Release -f netcoreapp3.1 -p src/Google.Protobuf.Test/Google.Protobuf.Test.csproj
28 set -ex
33 # Version of the tests (i.e., the version of protobuf from where we extracted
37 # The old version of protobuf that we are testing compatibility against. This
39 # that version to test compatibility of the newest runtime against it), but it
40 # is also possible to use this same test set to test the compatibility of the
41 # latest version against other versions.
43 …repo1.maven.org/maven2/com/google/protobuf/protoc/$OLD_VERSION/protoc-$OLD_VERSION-linux-x86_64.exe
48 [ -f ../../../src/protoc ] || {
53 # Download old version protoc compiler (for linux).
54 wget $OLD_VERSION_PROTOC -O old_protoc
58 # the new runtime (including old version generated code).
60 cp ../../src/Google.Protobuf src/Google.Protobuf -r
61 cp ../../keys . -r
64 # proto set 1: use old version
65 # proto set 2 which may import protos in set 1: use old version
69 # proto set 1: use new version
70 # proto set 2 which may import protos in set 1: use old version
74 # proto set 1: use old version
75 # proto set 2 which may import protos in set 1: use new version
79 rm keys -r
80 rm src/Google.Protobuf -r