From df6e92ad99e35eeaddfb4eaee16051c5a3c269c7 Mon Sep 17 00:00:00 2001 From: Georgios Andrianakis Date: Fri, 17 Jan 2020 18:23:13 +0200 Subject: [PATCH] Exclude rest-client from native build This is done because SSL doesn't work from docker builds of the native image Fixes: https://github.com/quarkusio/quarkus/issues/6588#issuecomment-575648918 --- .github/workflows/native-build-development.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/native-build-development.yml b/.github/workflows/native-build-development.yml index 79f3268cf8..82ab9b8f0d 100644 --- a/.github/workflows/native-build-development.yml +++ b/.github/workflows/native-build-development.yml @@ -36,7 +36,8 @@ jobs: - name: Build Quickstart with native run: | mvn -B clean install -Pnative \ - -Dquarkus.native.container-build=true + -Dquarkus.native.container-build=true \ + -pl "!rest-client-quickstart" - name: Report if: always() env: