-
Notifications
You must be signed in to change notification settings - Fork 3
111 lines (97 loc) · 3.94 KB
/
linter.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
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
name: Run Linter
on:
pull_request:
concurrency:
group: linter-${{ github.ref }}
cancel-in-progress: true
env:
DOCKER_LINTER_DEPENDENCY_IMAGE_NAME: ghcr.io/genspectrum/lapis-silo-linter-dependencies
jobs:
linterDependencies:
name: Build linter dependencies
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Generate dependency files hash
id: files-hash
run: |
DIR_HASH=$(echo -n ${{ hashFiles('conanfile.py', 'conanprofile.docker', '.github/workflows/linter.yml', './Dockerfile_linter_dependencies') }})
echo "DIR_HASH=$DIR_HASH" >> $GITHUB_ENV
- name: Docker metadata
id: dockerMetadata
uses: docker/metadata-action@v5
with:
images: ${{ env.DOCKER_LINTER_DEPENDENCY_IMAGE_NAME }}
tags: |
type=ref,event=branch
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/main' }}
type=raw,value=${{ env.DIR_HASH }}
type=sha,format=long,prefix=commit-
- name: Login to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Check if image exists
id: check-image
run: |
EXISTS=$(docker manifest inspect ${{ env.DOCKER_LINTER_DEPENDENCY_IMAGE_NAME }}:${{ env.DIR_HASH }} > /dev/null 2>&1 && echo "true" || echo "false")
echo "CACHE_HIT=$EXISTS" >> $GITHUB_ENV
- name: Set up Docker Buildx
if: env.CACHE_HIT == 'false'
uses: docker/setup-buildx-action@v3
- name: Build linter dependencies image
if: env.CACHE_HIT == 'false'
uses: docker/build-push-action@v5
with:
context: .
push: true
tags: ${{ steps.dockerMetadata.outputs.tags }}
file: ./Dockerfile_linter_dependencies
cache-from: type=gha,ref=linter-dependencies-image-cache-${{ hashFiles('conanfile.py', 'Dockerfile_linter') }}
cache-to: type=gha,mode=min,ref=linter-dependencies-image-cache-${{ hashFiles('conanfile.py', 'Dockerfile_linter') }}
- name: Retag and push existing image if cache hit
if: env.CACHE_HIT == 'true'
run: |
TAGS=(${{ steps.dockerMetadata.outputs.tags }})
for TAG in "${TAGS[@]}"; do
docker buildx imagetools create --tag $TAG ${{ env.DOCKER_LINTER_DEPENDENCY_IMAGE_NAME }}:${{ env.DIR_HASH }}
done
linter:
name: Build And Run linter
needs: linterDependencies
runs-on: ubuntu-latest
container:
image: ghcr.io/genspectrum/lapis-silo-linter-dependencies:commit-${{ github.sha }}
steps:
- uses: actions/checkout@v4
- name: Get changed files
id: changed-files
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
PR_NUMBER: ${{ github.event.number }}
run: |
echo "Github Event ${{ github.event }}"
echo "Github Event number ${{ github.event.number }}"
echo "github.repository_owner ${{ github.repository_owner }}"
echo "github.repository ${{ github.repository }}"
echo "Changed files in PR #${PR_NUMBER}:"
files=$(curl -s \
"https://api.github.com/repos/${{ github.repository }}/pulls/${PR_NUMBER}/files" \
| jq -r '.[].filename')
echo "$files"
echo "::set-output name=files::$files"
- name: Configure and run clang-tidy on changed files
run: |
mkdir -p build
cd build
changed_files="${{ steps.changed-files.outputs.files }}"
IFS=$'\n' read -d '' -r -a file_array <<< "$changed_files"
for file in "${file_array[@]}"; do
if [[ $file == *.cpp ]]; then
echo "Now linting the file: $file"
cmake -DCMAKE_CXX_CLANG_TIDY="clang-tidy" ..
cmake --build . --target $(basename $file)
fi
done