You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by gi...@apache.org on 2022/04/05 22:15:32 UTC

[beam] branch asf-site updated: Publishing website 2022/04/05 22:15:25 at commit 0f7aa9e

This is an automated email from the ASF dual-hosted git repository.

git-site-role pushed a commit to branch asf-site
in repository https://gitbox.apache.org/repos/asf/beam.git


The following commit(s) were added to refs/heads/asf-site by this push:
     new 0bc3379e111 Publishing website 2022/04/05 22:15:25 at commit 0f7aa9e
0bc3379e111 is described below

commit 0bc3379e11164a664c8a37d6ec360e7311c391b7
Author: jenkins <bu...@apache.org>
AuthorDate: Tue Apr 5 22:15:26 2022 +0000

    Publishing website 2022/04/05 22:15:25 at commit 0f7aa9e
---
 website/generated-content/contribute/index.html | 37 +++++++++----------------
 website/generated-content/sitemap.xml           |  2 +-
 2 files changed, 14 insertions(+), 25 deletions(-)

diff --git a/website/generated-content/contribute/index.html b/website/generated-content/contribute/index.html
index decd850f5a6..997ce858788 100644
--- a/website/generated-content/contribute/index.html
+++ b/website/generated-content/contribute/index.html
@@ -53,33 +53,22 @@ to introduce yourself and to be added as a contributor in the Beam issue tracker
 ASF Jira Username. For example <a href=https://lists.apache.org/thread.html/e6018c2aaf7dc7895091434295e5b0fafe192b975e3e3761fcf0cda7@%3Cdev.beam.apache.org%3E>this welcome email</a>.</li><li>If your change is large or it is your first change, it is a good idea to
 <a href=/community/contact-us/>discuss it on the dev@ mailing list</a>.</li><li>For large changes create a design doc
 (<a href=https://s.apache.org/beam-design-doc-template>template</a>,
-<a href=https://s.apache.org/beam-design-docs>examples</a>) and email it to the <a href=/community/contact-us>dev@ mailing list</a>.</li></ol><h3 id=development-setup>Development Setup</h3><ol><li><p>Check <a href=https://cwiki.apache.org/confluence/display/BEAM/Git+Tips>Git workflow tips</a> if you need help with git forking, cloning, branching, committing, pull requests, and squashing commits.</p></li><li><p>Clone the git repository. You can download it anywhere you like.</p><pre><code [...]
+<a href=https://s.apache.org/beam-design-docs>examples</a>) and email it to the <a href=/community/contact-us>dev@ mailing list</a>.</li></ol><h3 id=development-setup>Development Setup</h3><ol><li>Check <a href=https://cwiki.apache.org/confluence/display/BEAM/Git+Tips>Git workflow tips</a> if you need help with git forking, cloning, branching, committing, pull requests, and squashing commits.</li><li>Clone the git repository. You can download it anywhere you like.</li></ol><pre><code>$ m [...]
 $ cd ~/go/src/github.com/apache
 $ git clone https://github.com/apache/beam
 $ cd beam
-
-- For Go development:
-We recommend putting it in your [`$GOPATH`](https://golang.org/doc/gopath_code#GOPATH) (`$HOME/go` by default on Unix systems).
-   1. Clone the repo, and update your branch as normal
-           $ git clone https://github.com/apache/beam.git
-           $ cd beam
-           $ git remote add &lt;GitHub_user&gt; git@github.com:&lt;GitHub_user&gt;/beam.git
-           $ git fetch --all
-   1. Get or Update all the Go SDK dependencies
-           $ go get -u ./...
-</code></pre></li><li><p>Check the environment was set up correctly.</p><ul><li><p><strong>Option 1</strong>: validate the Go, Java, and Python environments:</p><p><strong>Important</strong>: Make sure you have activated Python development.</p></li></ul></li></ol><pre><code>./gradlew :checkSetup
-</code></pre><pre><code>- **Option 2**: Run independent checks:
-    - For **Go development**:
-      1. Execute:
-</code></pre><pre><code>export GOLANG_PROTOBUF_REGISTRATION_CONFLICT=ignore
+</code></pre><ul><li>For Go development:
+We recommend putting it in your <a href=https://golang.org/doc/gopath_code#GOPATH><code>$GOPATH</code></a> (<code>$HOME/go</code> by default on Unix systems).<ol><li>Clone the repo, and update your branch as normal</li></ol><pre><code>$ git clone https://github.com/apache/beam.git
+$ cd beam
+$ git remote add &lt;GitHub_user&gt; git@github.com:&lt;GitHub_user&gt;/beam.git
+$ git fetch --all
+</code></pre><ol><li>Get or Update all the Go SDK dependencies</li></ol><pre><code>$ go get -u ./...
+</code></pre></li></ul><ol><li><p>Check the environment was set up correctly.</p><ul><li><p><strong>Option 1</strong>: validate the Go, Java, and Python environments:</p><p><strong>Important</strong>: Make sure you have activated Python development.</p><pre><code>./gradlew :checkSetup
+</code></pre></li><li><p><strong>Option 2</strong>: Run independent checks:</p><ul><li>For <strong>Go development</strong>:<ol><li>Execute:</li></ol></li></ul><pre><code>export GOLANG_PROTOBUF_REGISTRATION_CONFLICT=ignore
 ./gradlew :sdks:go:examples:wordCount
-</code></pre><pre><code>     - For **Python development**:
-      1. Execute:
-</code></pre><pre><code>./gradlew :sdks:python:wordCount
-</code></pre><pre><code>    - For **Java development**:
-      1. Execute:
-</code></pre><pre><code>./gradlew :examples:java:wordCount
-</code></pre><ol><li><p>Familiarize yourself with gradle and the project structure. At the root of the git repository, run:</p><pre><code>$ ./gradlew projects
+</code></pre><ul><li>For <strong>Python development</strong>:<ol><li>Execute:</li></ol></li></ul><pre><code>./gradlew :sdks:python:wordCount
+</code></pre><ul><li>For <strong>Java development</strong>:<ol><li>Execute:</li></ol></li></ul><pre><code>./gradlew :examples:java:wordCount
+</code></pre></li></ul></li><li><p>Familiarize yourself with gradle and the project structure. At the root of the git repository, run:</p><pre><code>$ ./gradlew projects
 </code></pre><p>Examine the available tasks in a project. For the default set of tasks, use:</p><pre><code>$ ./gradlew tasks
 </code></pre><p>For a given module, use:</p><pre><code>$ ./gradlew -p sdks/java/io/cassandra tasks
 </code></pre><p>For an exhaustive list of tasks, use:</p><pre><code>$ ./gradlew tasks --all
@@ -126,7 +115,7 @@ Anyone has read access. If you wish to contribute changes, please create an acco
 <a href=/contribute/ptransform-style-guide>PTransform Style Guide</a>.</p><p>If you are contributing a Runner to Beam, refer to the
 <a href=/contribute/runner-guide/>Runner authoring guide</a></p><p>Review <a href=https://s.apache.org/beam-design-docs>design documents</a>.</p><p>A great way to contribute is to join an existing effort. For the most
 intensive efforts, check out the <a href=/roadmap/>roadmap</a>.</p><p>You can also find a more exhaustive list on the <a href=https://cwiki.apache.org/confluence/display/BEAM/Apache+Beam>Beam developers&rsquo; wiki</a></p><h2 id=troubleshooting>Troubleshooting</h2><p>If you run into any issues, check out the <a href=https://cwiki.apache.org/confluence/display/BEAM/Contributor+FAQ>contribution FAQ</a> or ask on the <a href=/community/contact-us/>dev@ mailing list</a> or <a href=/community [...]
-<a href=/community/contact-us>reach out to the Beam community</a>.</p><div class=feedback><p class=update>Last updated on 2021/11/17</p><h3>Have you found everything you were looking for?</h3><p class=description>Was it all useful and clear? Is there anything that you would like to change? Let us know!</p><button class=load-button><a href="mailto:dev@beam.apache.org?subject=Beam Website Feedback">SEND FEEDBACK</a></button></div></div></div><footer class=footer><div class=footer__containe [...]
+<a href=/community/contact-us>reach out to the Beam community</a>.</p><div class=feedback><p class=update>Last updated on 2022/04/05</p><h3>Have you found everything you were looking for?</h3><p class=description>Was it all useful and clear? Is there anything that you would like to change? Let us know!</p><button class=load-button><a href="mailto:dev@beam.apache.org?subject=Beam Website Feedback">SEND FEEDBACK</a></button></div></div></div><footer class=footer><div class=footer__containe [...]
 <a href=http://www.apache.org>The Apache Software Foundation</a>
 | <a href=/privacy_policy>Privacy Policy</a>
 | <a href=/feed.xml>RSS Feed</a><br><br>Apache Beam, Apache, Beam, the Beam logo, and the Apache feather logo are either registered trademarks or trademarks of The Apache Software Foundation. All other products or name brands are trademarks of their respective holders, including The Apache Software Foundation.</div></div></div></div></footer></body></html>
\ No newline at end of file
diff --git a/website/generated-content/sitemap.xml b/website/generated-content/sitemap.xml
index 141fb730320..68add625fdf 100644
--- a/website/generated-content/sitemap.xml
+++ b/website/generated-content/sitemap.xml
@@ -1 +1 @@
-<?xml version="1.0" encoding="utf-8" standalone="yes"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml"><url><loc>/blog/beam-2.37.0/</loc><lastmod>2022-03-04T10:14:02-08:00</lastmod></url><url><loc>/categories/blog/</loc><lastmod>2022-03-28T08:41:34-07:00</lastmod></url><url><loc>/blog/</loc><lastmod>2022-03-28T08:41:34-07:00</lastmod></url><url><loc>/categories/</loc><lastmod>2022-03-28T08:41:34-07:00</lastmod></url><url><loc>/blog/u [...]
\ No newline at end of file
+<?xml version="1.0" encoding="utf-8" standalone="yes"?><urlset xmlns="http://www.sitemaps.org/schemas/sitemap/0.9" xmlns:xhtml="http://www.w3.org/1999/xhtml"><url><loc>/blog/beam-2.37.0/</loc><lastmod>2022-03-04T10:14:02-08:00</lastmod></url><url><loc>/categories/blog/</loc><lastmod>2022-03-28T08:41:34-07:00</lastmod></url><url><loc>/blog/</loc><lastmod>2022-03-28T08:41:34-07:00</lastmod></url><url><loc>/categories/</loc><lastmod>2022-03-28T08:41:34-07:00</lastmod></url><url><loc>/blog/u [...]
\ No newline at end of file