Bump io.fabric8:kubernetes-server-mock from 5.12.2 to 6.10.0 #1242
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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: Unit & Integration tests CI | |
on: | |
push: | |
paths-ignore: | |
- 'docs/**' | |
- 'dev/**' | |
- 'helm/**' | |
- 'web-console/**' | |
- '**/*.md' | |
branches: | |
- master | |
- /^\d+\.\d+\.\d+(-\S*)?$/ # release branches | |
pull_request: | |
paths-ignore: | |
- 'docs/**' | |
- 'dev/**' | |
- 'helm/**' | |
- 'web-console/**' | |
- '**/*.md' | |
branches: | |
- master | |
- /^\d+\.\d+\.\d+(-\S*)?$/ # release branches | |
concurrency: | |
group: '${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | |
cancel-in-progress: true | |
env: | |
MYSQL_DRIVER_CLASSNAME: com.mysql.jdbc.Driver # Used to set druid config in docker image for revised ITs | |
SEGMENT_DOWNLOAD_TIMEOUT_MINS: 5 | |
jobs: | |
build: | |
name: build (jdk${{ matrix.jdk }}) | |
strategy: | |
fail-fast: false | |
matrix: | |
jdk: [ '8', '11', '17' ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout branch | |
uses: actions/checkout@v3 | |
- name: Setup java | |
run: export JAVA_HOME=$JAVA_HOME_${{ matrix.jdk }}_X64 | |
- name: Cache Maven m2 repository | |
id: maven | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2/repository | |
key: maven-${{ runner.os }}-${{ matrix.jdk }}-${{ github.sha }} | |
- name: Cache targets | |
id: target | |
uses: actions/cache@v3 | |
with: | |
path: | | |
./**/target | |
key: maven-${{ runner.os }}-${{ matrix.jdk }}-targets-${{ github.sha }} | |
- name: Cache image | |
id: docker_container | |
uses: actions/cache@v3 | |
with: | |
key: druid-container-jdk${{ matrix.jdk }}.tar.gz-${{ github.sha }} | |
path: | | |
./druid-container-jdk${{ matrix.jdk }}.tar.gz | |
./integration-tests-ex/image/target/env.sh | |
- name: Maven build | |
id: maven_build | |
run: | | |
./it.sh ci | |
- name: Container build | |
run: | | |
./it.sh image | |
source ./integration-tests-ex/image/target/env.sh | |
docker tag $DRUID_IT_IMAGE_NAME $DRUID_IT_IMAGE_NAME-jdk${{ matrix.jdk }} | |
- name: Save docker container to archive | |
run: | | |
source ./integration-tests-ex/image/target/env.sh | |
echo $DRUID_IT_IMAGE_NAME | |
docker save "$DRUID_IT_IMAGE_NAME" | gzip > druid-container-jdk${{ matrix.jdk }}.tar.gz | |
unit-tests-phase2: | |
strategy: | |
fail-fast: false | |
matrix: | |
jdk: [ 11, 17 ] | |
name: unit tests (jdk${{ matrix.jdk }}, sql-compat=true) | |
uses: ./.github/workflows/unit-tests.yml | |
needs: unit-tests | |
with: | |
jdk: ${{ matrix.jdk }} | |
sql_compatibility: true | |
unit-tests: | |
strategy: | |
fail-fast: false | |
matrix: | |
sql_compatibility: [ false, true ] | |
name: unit tests (jdk8, sql-compat=${{ matrix.sql_compatibility }}) | |
uses: ./.github/workflows/unit-tests.yml | |
needs: build | |
with: | |
jdk: 8 | |
sql_compatibility: ${{ matrix.sql_compatibility }} | |
standard-its: | |
needs: unit-tests | |
uses: ./.github/workflows/standard-its.yml | |
revised-its: | |
needs: unit-tests | |
uses: ./.github/workflows/revised-its.yml |