Skip to content

Commit

Permalink
Merge pull request #645 from loicmathieu/google-cloud-functions-nativ…
Browse files Browse the repository at this point in the history
…e-build

Remove native build profile for Google Cloud Functions
  • Loading branch information
gsmet committed Sep 8, 2020
2 parents 1cfdcbc + 4bb793c commit 5ba1c03
Show file tree
Hide file tree
Showing 4 changed files with 1 addition and 109 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/native-build-development.yml
Expand Up @@ -41,7 +41,7 @@ jobs:
mvn -B clean install --fail-at-end -Pnative -Ddocker \
-Dquarkus.native.container-build=true \
-Dquarkus.native.builder-image=quay.io/quarkus/ubi-quarkus-native-image:20.1.0-java11 \
-pl '!rest-client-quickstart,!security-jwt-quickstart,!grpc-tls-quickstart,!google-cloud-functions-quickstart,!google-cloud-functions-http-quickstart,!org.acme:funqy-google-cloud-functions-quickstart'
-pl '!rest-client-quickstart,!security-jwt-quickstart,!grpc-tls-quickstart'
- name: Check RSS
env:
Expand Down
36 changes: 0 additions & 36 deletions funqy-quickstarts/funqy-google-cloud-functions-quickstart/pom.xml 100644 → 100755
Expand Up @@ -76,40 +76,4 @@
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>native</id>
<activation>
<property>
<name>native</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${surefire-plugin.version}</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
<configuration>
<systemPropertyVariables>
<native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
<maven.home>${maven.home}</maven.home>
</systemPropertyVariables>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<quarkus.package.type>native</quarkus.package.type>
</properties>
</profile>
</profiles>
</project>
36 changes: 0 additions & 36 deletions google-cloud-functions-http-quickstart/pom.xml
Expand Up @@ -92,40 +92,4 @@
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>native</id>
<activation>
<property>
<name>native</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${surefire-plugin.version}</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
<configuration>
<systemPropertyVariables>
<native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
<maven.home>${maven.home}</maven.home>
</systemPropertyVariables>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<quarkus.package.type>native</quarkus.package.type>
</properties>
</profile>
</profiles>
</project>
36 changes: 0 additions & 36 deletions google-cloud-functions-quickstart/pom.xml 100644 → 100755
Expand Up @@ -76,40 +76,4 @@
</plugin>
</plugins>
</build>
<profiles>
<profile>
<id>native</id>
<activation>
<property>
<name>native</name>
</property>
</activation>
<build>
<plugins>
<plugin>
<artifactId>maven-failsafe-plugin</artifactId>
<version>${surefire-plugin.version}</version>
<executions>
<execution>
<goals>
<goal>integration-test</goal>
<goal>verify</goal>
</goals>
<configuration>
<systemPropertyVariables>
<native.image.path>${project.build.directory}/${project.build.finalName}-runner</native.image.path>
<java.util.logging.manager>org.jboss.logmanager.LogManager</java.util.logging.manager>
<maven.home>${maven.home}</maven.home>
</systemPropertyVariables>
</configuration>
</execution>
</executions>
</plugin>
</plugins>
</build>
<properties>
<quarkus.package.type>native</quarkus.package.type>
</properties>
</profile>
</profiles>
</project>

0 comments on commit 5ba1c03

Please sign in to comment.