-
Notifications
You must be signed in to change notification settings - Fork 7
43 lines (42 loc) · 1.23 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
38
39
40
41
42
43
name: 'CI'
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
jobs:
build:
strategy:
matrix:
platform: [ linux/amd64 ] # linux/arm64
os: [ ubuntu-latest ]
version: [ 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@v3
- name: Hadolint
uses: hadolint/[email protected]
with:
dockerfile: ${{ matrix.version }}/${{ matrix.linter }}/Dockerfile
- name: Run KICS Scan
uses: checkmarx/[email protected]
with:
path: '${{ matrix.version }}/${{ matrix.linter }}/Dockerfile'
output_path: myResults/
- name: Display KICS results
run: |
cat myResults/results.json
- 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