-
Notifications
You must be signed in to change notification settings - Fork 7
37 lines (36 loc) · 1.04 KB
/
ci.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
name: 'CI'
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
jobs:
build:
strategy:
matrix:
platform: [ linux/amd64 ] # linux/arm64
os: [ ubuntu-latest ]
version: [ 2023.3, 2023.2 ]
linter: [ android-community, dotnet, go, js, jvm, jvm-community, php, python, python-community ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v4
# - name: Hadolint
# uses: hadolint/[email protected]
# with:
# dockerfile: ${{ matrix.version }}/${{ matrix.linter }}/Dockerfile
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build
uses: docker/build-push-action@v4
with:
tags: jetbrains/qodana-${{ matrix.linter }}:${{ matrix.version }}
context: ${{ matrix.version }}/${{ matrix.linter }}
platforms: ${{ matrix.platform }}
push: false
cache-from: type=gha
cache-to: type=gha,mode=max