Skip to content

[3.33] fix: use x509 certificates for ftp extensions sftp tests #8875

[3.33] fix: use x509 certificates for ftp extensions sftp tests

[3.33] fix: use x509 certificates for ftp extensions sftp tests #8875

Workflow file for this run

#
# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
name: Validate PR Style
on:
pull_request:
branches:
- main
- camel-main
- quarkus-main
- "[0-9]+.[0-9]+.x"
paths-ignore:
- '**.adoc'
- '**.md'
- 'Jenkinsfile'
- 'Jenkinsfile.*'
- 'KEYS'
- 'LICENSE.txt'
- 'NOTICE.txt'
- '.github/*.sh'
- '.github/*.yaml'
- '.github/*.yml'
- '.github/workflows/assign-issue-milestone.yaml'
- '.github/workflows/assign-wontfix-issue-milestone.yaml'
- '.github/workflows/camel-master-cron.yaml'
- '.github/workflows/check-dependency-convergence.yml'
- '.github/workflows/ci-semeru-jdk.yaml'
- '.github/workflows/generate-sbom-main.yml'
- '.github/workflows/jdk25-build.yaml'
- '.github/workflows/label-issue.yaml'
- '.github/workflows/pr-validate.yml'
- '.github/workflows/quarkus-lts-ci-build.yaml'
- '.github/workflows/quarkus-master-cron.yaml'
- '.github/workflows/synchronize-dependabot-branch.yaml'
- '.github/workflows/pr-doc-validation.yaml'
- 'docs/antora.yml'
- 'release-utils/**'
concurrency:
group: ${{ github.ref }}-${{ github.workflow }}
cancel-in-progress: true
env:
LANG: en_US
MAVEN_OPTS: -Xmx3500m
CQ_MAVEN_ARGS: -V -ntp -e -Daether.connector.http.connectionMaxTtl=120
permissions: # added using https://github.com/step-security/secure-repo
contents: read
jobs:
check-format:
if: github.repository == 'apache/camel-quarkus'
runs-on: ubuntu-latest
steps:
- name: Setup apache-snapshots profile
if: github.base_ref == 'camel-main'
run: |
echo "BRANCH_OPTIONS=-Papache-snapshots" >> $GITHUB_ENV
- name: Setup oss-snapshots profile
if: github.base_ref == 'quarkus-main'
run: |
echo "BRANCH_OPTIONS=-Poss-snapshots" >> $GITHUB_ENV
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Set up JDK 17
uses: actions/setup-java@be666c2fcd27ec809703dec50e508c2fdc7f6654 # v5.2.0
with:
distribution: 'temurin'
java-version: '17'
- name: Setup Maven Cache
id: maven-cache
uses: ./.github/actions/setup-maven-cache
- name: mvn validate
run: |
./mvnw ${CQ_MAVEN_ARGS} ${BRANCH_OPTIONS} -fae \
-DskipTests \
-Pcheck-format \
clean validate
- name: Save Maven Cache
uses: ./.github/actions/setup-maven-cache
if: always()
with:
action: save
cache-key: ${{ steps.maven-cache.outputs.cache-key }}