Remove usage of non-existing ci profile (#11270)

Motivation:

c443bc40fa removed the CI profile but we missed to adjust the docker-compose.yaml file

Modifications:

Remove -Pci as the profile doesn't exist anymore

Result:

No more warning during build
This commit is contained in:
Norman Maurer 2021-05-18 11:40:27 +02:00
parent f2127d7963
commit fd9970fd87

View File

@ -25,15 +25,15 @@ services:
build-leak: build-leak:
<<: *common <<: *common
command: /bin/bash -cl "./mvnw -Pci,leak clean install -Dio.netty.testsuite.badHost=netty.io" command: /bin/bash -cl "./mvnw -Pleak clean install -Dio.netty.testsuite.badHost=netty.io"
build: build:
<<: *common <<: *common
command: /bin/bash -cl "./mvnw -Pci clean install -Dio.netty.testsuite.badHost=netty.io" command: /bin/bash -cl "./mvnw clean install -Dio.netty.testsuite.badHost=netty.io"
deploy: deploy:
<<: *common <<: *common
command: /bin/bash -cl "./mvnw -Pci clean deploy -DskipTests=true" command: /bin/bash -cl "./mvnw clean deploy -DskipTests=true"
stage-snapshot: stage-snapshot:
<<: *common <<: *common
@ -43,7 +43,7 @@ services:
- ~/.m2:/root/.m2 - ~/.m2:/root/.m2
- ~/local-staging:/root/local-staging - ~/local-staging:/root/local-staging
- ..:/code - ..:/code
command: /bin/bash -cl "./mvnw -Pci clean package org.sonatype.plugins:nexus-staging-maven-plugin:deploy -DaltStagingDirectory=/root/local-staging -DskipRemoteStaging=true -DskipTests=true" command: /bin/bash -cl "./mvnw clean package org.sonatype.plugins:nexus-staging-maven-plugin:deploy -DaltStagingDirectory=/root/local-staging -DskipRemoteStaging=true -DskipTests=true"
stage-release: stage-release:
<<: *common <<: *common
@ -52,15 +52,15 @@ services:
- ~/.m2:/root/.m2 - ~/.m2:/root/.m2
- ~/local-staging:/root/local-staging - ~/local-staging:/root/local-staging
- ..:/code - ..:/code
command: /bin/bash -cl "cat <(echo -e \"${GPG_PRIVATE_KEY}\") | gpg --batch --import && ./mvnw -Pci clean javadoc:jar package gpg:sign org.sonatype.plugins:nexus-staging-maven-plugin:deploy -DnexusUrl=https://oss.sonatype.org -DserverId=sonatype-nexus-staging -DaltStagingDirectory=/root/local-staging -DskipRemoteStaging=true -DskipTests=true -Dgpg.passphrase=${GPG_PASSPHRASE} -Dgpg.keyname=${GPG_KEYNAME}" command: /bin/bash -cl "cat <(echo -e \"${GPG_PRIVATE_KEY}\") | gpg --batch --import && ./mvnw clean javadoc:jar package gpg:sign org.sonatype.plugins:nexus-staging-maven-plugin:deploy -DnexusUrl=https://oss.sonatype.org -DserverId=sonatype-nexus-staging -DaltStagingDirectory=/root/local-staging -DskipRemoteStaging=true -DskipTests=true -Dgpg.passphrase=${GPG_PASSPHRASE} -Dgpg.keyname=${GPG_KEYNAME}"
build-boringssl-static: build-boringssl-static:
<<: *common <<: *common
command: /bin/bash -cl "./mvnw -Pci,boringssl clean install -Dio.netty.testsuite.badHost=netty.io -Dxml.skip=true" command: /bin/bash -cl "./mvnw -Pboringssl clean install -Dio.netty.testsuite.badHost=netty.io -Dxml.skip=true"
build-leak-boringssl-static: build-leak-boringssl-static:
<<: *common <<: *common
command: /bin/bash -cl "./mvnw -Pci,boringssl,leak clean install -Dio.netty.testsuite.badHost=netty.io -Dxml.skip=true" command: /bin/bash -cl "./mvnw -Pboringssl,leak clean install -Dio.netty.testsuite.badHost=netty.io -Dxml.skip=true"
shell: shell:
<<: *common <<: *common