-
Notifications
You must be signed in to change notification settings - Fork 1.2k
GAE (Flex_Java/Flex_Custom/Flex_Compat/Std_Java8), GCE, GKE testing app for gcj #1859
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from 7 commits
3069de5
10baa82
35af49e
52908f9
4307dff
75b4046
4ca6737
9b5e93d
f4fde11
96e41c1
5ab123b
e97f961
798ff0d
ed25adf
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,63 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <project xmlns="http://maven.apache.org/POM/4.0.0" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| <parent> | ||
| <artifactId>google-cloud-pom</artifactId> | ||
| <groupId>com.google.cloud</groupId> | ||
| <version>0.11.2-alpha-SNAPSHOT</version> | ||
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong. |
||
| <relativePath>../..</relativePath> | ||
| </parent> | ||
|
|
||
| <modelVersion>4.0.0</modelVersion> | ||
| <packaging>war</packaging> | ||
| <artifactId>google-cloud-appengine-flex-compat</artifactId> | ||
|
|
||
| <properties> | ||
| <appengine.sdk.version>1.9.51</appengine.sdk.version> | ||
| <jetty.maven.plugin>9.3.8.v20160314</jetty.maven.plugin> | ||
| <java.source.version>1.7</java.source.version> | ||
| </properties> | ||
|
|
||
| <dependencies> | ||
| <dependency> | ||
| <groupId>${project.groupId}</groupId> | ||
| <artifactId>google-cloud-managed-test</artifactId> | ||
| <version>${project.version}</version> | ||
| </dependency> | ||
| <dependency> | ||
| <groupId>com.google.appengine</groupId> | ||
| <artifactId>appengine-api-1.0-sdk</artifactId> | ||
| <version>${appengine.sdk.version}</version> | ||
| </dependency> | ||
| </dependencies> | ||
|
|
||
| <build> | ||
| <outputDirectory> | ||
| ${project.build.directory}/${project.build.finalName}/WEB-INF/classes | ||
| </outputDirectory> | ||
|
|
||
| <plugins> | ||
| <plugin> | ||
| <groupId>org.eclipse.jetty</groupId> | ||
| <artifactId>jetty-maven-plugin</artifactId> | ||
| <version>${jetty.maven.plugin}</version> | ||
| </plugin> | ||
|
|
||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <version>3.3</version> | ||
| <artifactId>maven-compiler-plugin</artifactId> | ||
| <configuration> | ||
| <source>${java.source.version}</source> | ||
| <target>${java.source.version}</target> | ||
| </configuration> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>com.google.appengine</groupId> | ||
| <artifactId>appengine-maven-plugin</artifactId> | ||
| <version>${appengine.sdk.version}</version> | ||
| </plugin> | ||
| </plugins> | ||
| </build> | ||
| </project> | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <appengine-web-app xmlns="http://appengine.google.com/ns/1.0"> | ||
| <application>vam-veneer</application> | ||
This comment was marked as spam.
Sorry, something went wrong. |
||
| <service>flex-compat</service> | ||
| <version>1</version> | ||
| <threadsafe>true</threadsafe> | ||
| <!--<instance-class>B8</instance-class>--> | ||
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong. |
||
| <env>flex</env> | ||
| <beta-settings> | ||
| <setting name="enable_app_engine_apis" value="true"/> | ||
| </beta-settings> | ||
| <manual-scaling> | ||
| <instances>1</instances> | ||
| </manual-scaling> | ||
| </appengine-web-app> | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" | ||
| version="3.1"> | ||
| </web-app> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| <html> | ||
| <title>google-cloud-java managed environments tests executor</title> | ||
| <body> | ||
| <p>Enter fully qualified test class names to execute. One class per line, use '#' for comments.</p> | ||
| <form method="POST" action="/test"> | ||
| <label> | ||
| <textarea name="classes" cols="50" rows="10">#com.google.cloud.storage.BlobIdTest</textarea> | ||
| </label> | ||
| <br/> | ||
| <input type="submit"/> | ||
| </form> | ||
| </body> | ||
| </html> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <project xmlns="http://maven.apache.org/POM/4.0.0" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| <parent> | ||
| <artifactId>google-cloud-pom</artifactId> | ||
| <groupId>com.google.cloud</groupId> | ||
| <version>0.11.2-alpha-SNAPSHOT</version> | ||
| <relativePath>../..</relativePath> | ||
| </parent> | ||
|
|
||
| <modelVersion>4.0.0</modelVersion> | ||
| <packaging>war</packaging> | ||
| <artifactId>google-cloud-appengine-flex-custom</artifactId> | ||
|
|
||
| <properties> | ||
| <appengine.maven.plugin>1.2.1</appengine.maven.plugin> | ||
| <jetty.maven.plugin>9.3.8.v20160314</jetty.maven.plugin> | ||
| </properties> | ||
|
|
||
| <dependencies> | ||
| <dependency> | ||
| <groupId>${project.groupId}</groupId> | ||
| <artifactId>google-cloud-managed-test</artifactId> | ||
| <version>${project.version}</version> | ||
| </dependency> | ||
| </dependencies> | ||
|
|
||
| <build> | ||
| <outputDirectory> | ||
| ${project.build.directory}/${project.build.finalName}/WEB-INF/classes | ||
| </outputDirectory> | ||
|
|
||
| <plugins> | ||
| <plugin> | ||
| <groupId>org.eclipse.jetty</groupId> | ||
| <artifactId>jetty-maven-plugin</artifactId> | ||
| <version>${jetty.maven.plugin}</version> | ||
| </plugin> | ||
|
|
||
| <plugin> | ||
| <groupId>com.google.cloud.tools</groupId> | ||
| <artifactId>appengine-maven-plugin</artifactId> | ||
| <version>${appengine.maven.plugin}</version> | ||
| <configuration> | ||
| <deploy.version>1</deploy.version> | ||
| </configuration> | ||
| </plugin> | ||
| </plugins> | ||
| </build> | ||
| </project> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| runtime: custom | ||
| env: flex | ||
|
|
||
| handlers: | ||
| - url: /.* | ||
| script: this field is required, but ignored | ||
|
|
||
| service: flex-custom | ||
|
|
||
| manual_scaling: | ||
| instances: 1 | ||
|
|
||
| resources: | ||
| cpu: 1 | ||
| memory_gb: 6 |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,2 @@ | ||
| FROM gcr.io/google_appengine/jetty | ||
| ADD google-cloud-appengine-flex-custom-0.10.1-alpha-SNAPSHOT.war $JETTY_BASE/webapps/root.war | ||
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong. |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" | ||
| version="3.1"> | ||
| </web-app> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| <html> | ||
| <title>google-cloud-java managed environments tests executor</title> | ||
| <body> | ||
| <p>Enter fully qualified test class names to execute. One class per line, use '#' for comments.</p> | ||
| <form method="POST" action="/test"> | ||
| <label> | ||
| <textarea name="classes" cols="50" rows="10">#com.google.cloud.storage.BlobIdTest</textarea> | ||
| </label> | ||
| <br/> | ||
| <input type="submit"/> | ||
| </form> | ||
| </body> | ||
| </html> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,51 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <project xmlns="http://maven.apache.org/POM/4.0.0" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| <parent> | ||
| <artifactId>google-cloud-pom</artifactId> | ||
| <groupId>com.google.cloud</groupId> | ||
| <version>0.11.2-alpha-SNAPSHOT</version> | ||
| <relativePath>../..</relativePath> | ||
| </parent> | ||
|
|
||
| <modelVersion>4.0.0</modelVersion> | ||
| <packaging>war</packaging> | ||
| <artifactId>google-cloud-appengine-flex-java</artifactId> | ||
|
|
||
| <properties> | ||
| <appengine.maven.plugin>1.2.1</appengine.maven.plugin> | ||
| <jetty.maven.plugin>9.3.8.v20160314</jetty.maven.plugin> | ||
| </properties> | ||
|
|
||
| <dependencies> | ||
| <dependency> | ||
| <groupId>${project.groupId}</groupId> | ||
| <artifactId>google-cloud-managed-test</artifactId> | ||
| <version>${project.version}</version> | ||
| </dependency> | ||
| </dependencies> | ||
|
|
||
| <build> | ||
| <outputDirectory> | ||
| ${project.build.directory}/${project.build.finalName}/WEB-INF/classes | ||
| </outputDirectory> | ||
|
|
||
| <plugins> | ||
| <plugin> | ||
| <groupId>org.eclipse.jetty</groupId> | ||
| <artifactId>jetty-maven-plugin</artifactId> | ||
| <version>${jetty.maven.plugin}</version> | ||
| </plugin> | ||
|
|
||
| <plugin> | ||
| <groupId>com.google.cloud.tools</groupId> | ||
| <artifactId>appengine-maven-plugin</artifactId> | ||
| <version>${appengine.maven.plugin}</version> | ||
| <configuration> | ||
| <deploy.version>1</deploy.version> | ||
| </configuration> | ||
| </plugin> | ||
| </plugins> | ||
| </build> | ||
| </project> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,19 @@ | ||
| runtime: java | ||
| env: flex | ||
|
|
||
| runtime_config: # Optional | ||
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong. |
||
| jdk: openjdk8 | ||
| server: jetty9 | ||
|
|
||
| handlers: | ||
| - url: /.* | ||
| script: this field is required, but ignored | ||
|
|
||
| service: flex-java | ||
|
|
||
| manual_scaling: | ||
| instances: 1 | ||
|
|
||
| resources: | ||
| cpu: 1 | ||
| memory_gb: 6 | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" | ||
| version="3.1"> | ||
| </web-app> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| <html> | ||
| <title>google-cloud-java managed environments tests executor</title> | ||
| <body> | ||
| <p>Enter fully qualified test class names to execute. One class per line, use '#' for comments.</p> | ||
| <form method="POST" action="/test"> | ||
| <label> | ||
| <textarea name="classes" cols="50" rows="10">#com.google.cloud.storage.BlobIdTest</textarea> | ||
| </label> | ||
| <br/> | ||
| <input type="submit"/> | ||
| </form> | ||
| </body> | ||
| </html> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,58 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <project xmlns="http://maven.apache.org/POM/4.0.0" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| <parent> | ||
| <artifactId>google-cloud-pom</artifactId> | ||
| <groupId>com.google.cloud</groupId> | ||
| <version>0.11.2-alpha-SNAPSHOT</version> | ||
| <relativePath>../..</relativePath> | ||
| </parent> | ||
|
|
||
| <modelVersion>4.0.0</modelVersion> | ||
| <packaging>war</packaging> | ||
| <artifactId>google-cloud-appengine-java8</artifactId> | ||
|
|
||
| <properties> | ||
| <appengine.sdk.version>1.9.51</appengine.sdk.version> | ||
| <jetty.maven.plugin>9.3.8.v20160314</jetty.maven.plugin> | ||
| <java.source.version>1.8</java.source.version> | ||
| </properties> | ||
|
|
||
| <dependencies> | ||
| <dependency> | ||
| <groupId>${project.groupId}</groupId> | ||
| <artifactId>google-cloud-managed-test</artifactId> | ||
| <version>${project.version}</version> | ||
| </dependency> | ||
| </dependencies> | ||
|
|
||
| <build> | ||
| <outputDirectory> | ||
| ${project.build.directory}/${project.build.finalName}/WEB-INF/classes | ||
| </outputDirectory> | ||
|
|
||
| <plugins> | ||
| <plugin> | ||
| <groupId>org.eclipse.jetty</groupId> | ||
| <artifactId>jetty-maven-plugin</artifactId> | ||
| <version>${jetty.maven.plugin}</version> | ||
| </plugin> | ||
|
|
||
| <plugin> | ||
| <groupId>org.apache.maven.plugins</groupId> | ||
| <version>3.3</version> | ||
| <artifactId>maven-compiler-plugin</artifactId> | ||
| <configuration> | ||
| <source>${java.source.version}</source> | ||
| <target>${java.source.version}</target> | ||
| </configuration> | ||
| </plugin> | ||
| <plugin> | ||
| <groupId>com.google.appengine</groupId> | ||
| <artifactId>appengine-maven-plugin</artifactId> | ||
| <version>${appengine.sdk.version}</version> | ||
| </plugin> | ||
| </plugins> | ||
| </build> | ||
| </project> |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,12 @@ | ||
| <?xml version="1.0" encoding="utf-8"?> | ||
| <appengine-web-app xmlns="http://appengine.google.com/ns/1.0"> | ||
| <application>vam-veneer</application> | ||
This comment was marked as spam.
Sorry, something went wrong.
This comment was marked as spam.
Sorry, something went wrong. |
||
| <service>std-java8</service> | ||
| <version>1</version> | ||
| <runtime>java8</runtime> | ||
| <threadsafe>true</threadsafe> | ||
| <instance-class>B8</instance-class> | ||
| <manual-scaling> | ||
| <instances>1</instances> | ||
| </manual-scaling> | ||
| </appengine-web-app> | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <web-app xmlns="http://xmlns.jcp.org/xml/ns/javaee" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xsi:schemaLocation="http://xmlns.jcp.org/xml/ns/javaee http://xmlns.jcp.org/xml/ns/javaee/web-app_3_1.xsd" | ||
| version="3.1"> | ||
| </web-app> |
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.
This comment was marked as spam.
Sorry, something went wrong.
Uh oh!
There was an error while loading. Please reload this page.