QD-8148 Update dependency debian_11/git to v1:2.30.2-1+deb11u3 #333
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
name: 'CI' | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
paths: | |
- '**/Dockerfile' | |
pull_request: | |
paths: | |
- '**/Dockerfile' | |
schedule: | |
- cron: '0 0 * * 1' | |
jobs: | |
# build242: | |
# name: "2024.2" | |
# strategy: | |
# matrix: | |
# platform: [ linux/amd64 ] # linux/arm64 | |
# linter: [ android-community, android, dotnet, go, js, jvm, jvm-community, php, python, python-community, dotnet-community, cpp, cnova ] | |
# runs-on: ubuntu-latest | |
# steps: | |
# - name: Checkout | |
# uses: actions/checkout@v4 | |
# - uses: dorny/paths-filter@v3 | |
# id: changes | |
# with: | |
# filters: | | |
# dockerfile: | |
# - '2024.2/${{ matrix.linter }}/Dockerfile' | |
# - if: steps.changes.outputs.dockerfile == 'true' | |
# name: Set up Docker Buildx | |
# uses: docker/setup-buildx-action@v3 | |
# - if: steps.changes.outputs.dockerfile == 'true' | |
# name: Build | |
# uses: docker/build-push-action@v6 | |
# with: | |
# tags: jetbrains/qodana-${{ matrix.linter }}:2024.1 | |
# context: 2024.2/${{ matrix.linter }} | |
# platforms: ${{ matrix.platform }} | |
# push: false | |
# cache-from: type=gha | |
# cache-to: type=gha,mode=max,ignore-error=true | |
build241: | |
name: "2024.1" | |
strategy: | |
matrix: | |
platform: [ linux/amd64 ] # linux/arm64 | |
linter: [ android-community, dotnet, go, js, jvm, jvm-community, php, python, python-community, dotnet-community, cpp ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: dorny/paths-filter@v3 | |
id: changes | |
with: | |
filters: | | |
dockerfile: | |
- '2024.1/${{ matrix.linter }}/Dockerfile' | |
- if: steps.changes.outputs.dockerfile == 'true' | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- if: steps.changes.outputs.dockerfile == 'true' | |
name: Build | |
uses: docker/build-push-action@v6 | |
with: | |
tags: jetbrains/qodana-${{ matrix.linter }}:2024.1 | |
context: 2024.1/${{ matrix.linter }} | |
platforms: ${{ matrix.platform }} | |
push: false | |
cache-from: type=gha | |
cache-to: type=gha,mode=max | |
build233: | |
name: "2023.3" | |
strategy: | |
matrix: | |
platform: [ linux/amd64 ] # linux/arm64 | |
linter: [ android-community, dotnet, go, js, jvm, jvm-community, php, python, python-community, dotnet-community ] | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- uses: dorny/paths-filter@v3 | |
id: changes | |
with: | |
filters: | | |
dockerfile: | |
- '2023.3/${{ matrix.linter }}/Dockerfile' | |
- if: steps.changes.outputs.dockerfile == 'true' | |
name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
- if: steps.changes.outputs.dockerfile == 'true' | |
name: Build | |
uses: docker/build-push-action@v6 | |
with: | |
tags: jetbrains/qodana-${{ matrix.linter }}:2023.3 | |
context: 2023.3/${{ matrix.linter }} | |
platforms: ${{ matrix.platform }} | |
push: false | |
cache-from: type=gha | |
cache-to: type=gha,mode=max |