aboutsummaryrefslogtreecommitdiff
path: root/protoc-artifacts
diff options
context:
space:
mode:
Diffstat (limited to 'protoc-artifacts')
-rw-r--r--protoc-artifacts/README.md13
-rwxr-xr-xprotoc-artifacts/build-zip.sh2
-rw-r--r--protoc-artifacts/pom.xml4
3 files changed, 11 insertions, 8 deletions
diff --git a/protoc-artifacts/README.md b/protoc-artifacts/README.md
index 9b148891..d60defb8 100644
--- a/protoc-artifacts/README.md
+++ b/protoc-artifacts/README.md
@@ -90,7 +90,7 @@ To checkout protobuf (run within the container):
```
$ # Replace v3.5.1 with the version you want
-$ wget -O - https://github.com/google/protobuf/archive/v3.5.1.tar.gz | tar xvzp
+$ wget -O - https://github.com/protocolbuffers/protobuf/archive/v3.5.1.tar.gz | tar xvzp
```
### Windows build
@@ -119,7 +119,9 @@ target directory layout:
protoc.exe
+ x86_32
protoc.exe
- + macos
+ + aarch_64
+ protoc.exe
+ + osx
+ x86_64
protoc.exe
+ x86_32
@@ -137,7 +139,7 @@ Use the following command to deploy artifacts for the host platform to a
staging repository.
```
-$ mvn clean deploy -P release
+$ mvn deploy -P release
```
It creates a new staging repository. Go to
@@ -152,10 +154,10 @@ and upload these zip packages to the download section of the github
release. For example:
```
-$ ./build-zip.sh 3.6.0
+$ ./build-zip.sh protoc 3.6.0
```
-The above command will create 5 zip files:
+The above command will create 7 zip files:
```
dist/protoc-3.6.0-win32.zip
@@ -163,6 +165,7 @@ dist/protoc-3.6.0-osx-x86_32.zip
dist/protoc-3.6.0-osx-x86_64.zip
dist/protoc-3.6.0-linux-x86_32.zip
dist/protoc-3.6.0-linux-x86_64.zip
+dist/protoc-3.6.0-linux-aarch_64.zip
dist/protoc-3.6.0-linux-ppcle_64.zip
```
diff --git a/protoc-artifacts/build-zip.sh b/protoc-artifacts/build-zip.sh
index 26b6cc93..1f0186f8 100755
--- a/protoc-artifacts/build-zip.sh
+++ b/protoc-artifacts/build-zip.sh
@@ -82,7 +82,7 @@ copy the contents of the 'include' directory somewhere as well, for example
into '/usr/local/include/'.
Please refer to our official github site for more installation instructions:
- https://github.com/google/protobuf
+ https://github.com/protocolbuffers/protobuf
EOF
mkdir -p dist
diff --git a/protoc-artifacts/pom.xml b/protoc-artifacts/pom.xml
index 55d9e91a..3f858908 100644
--- a/protoc-artifacts/pom.xml
+++ b/protoc-artifacts/pom.xml
@@ -27,9 +27,9 @@
</license>
</licenses>
<scm>
- <url>https://github.com/google/protobuf</url>
+ <url>https://github.com/protocolbuffers/protobuf</url>
<connection>
- scm:git:https://github.com/google/protobuf.git
+ scm:git:https://github.com/protocolbuffers/protobuf.git
</connection>
</scm>
<build>