Skip to content

add references from endpoint uri parameters to their corresponding setters in camel classes (*Endpoint, *Configuration) #872

add references from endpoint uri parameters to their corresponding setters in camel classes (*Endpoint, *Configuration)

add references from endpoint uri parameters to their corresponding setters in camel classes (*Endpoint, *Configuration) #872

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: Camel Idea Plugin CI
on:
push:
branches:
- main
- "[0-9]+.[0-9]+.x"
paths-ignore:
- '**.md'
- '**.png'
- 'LICENSE.txt'
pull_request:
branches:
- main
- "[0-9]+.[0-9]+.x"
paths-ignore:
- '**.md'
- '**.png'
- 'LICENSE.txt'
jobs:
build:
strategy:
fail-fast: false
matrix:
os: [ubuntu-latest, macos-latest, windows-latest]
version: [2025.2.1]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Set up JDK 21
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: '21'
cache: 'gradle'
- name: Validate Gradle wrapper
uses: gradle/actions/wrapper-validation@v4.2.2
- name: Build against all supported versions
run: ./build.sh ${{ matrix.version }}
shell: bash
- uses: actions/upload-artifact@v4
if: always()
with:
name: ${{ matrix.os }}-${{ matrix.version }}-Reports
path: build/reports
- uses: actions/upload-artifact@v4
if: always()
with:
name: ${{ matrix.os }}-${{ matrix.version }}-Logs
path: idea-sandbox/system-test/log-test/idea.log