Fix clang-tidy in CI (#1325)

Also removed old docker files and scripts.
This commit is contained in:
Sergey Kuznetsov
2024-04-08 11:49:43 +01:00
committed by GitHub
parent 36a790d666
commit 7372442f3a
15 changed files with 13 additions and 211 deletions

View File

@@ -39,8 +39,8 @@ jobs:
build:
name: Build
needs:
- check_format
needs:
- check_format
- check_docs
strategy:
fail-fast: false

View File

@@ -1,5 +1,6 @@
name: Update CI docker image
on:
pull_request:
push:
branches: [develop]
paths:
@@ -11,9 +12,10 @@ on:
jobs:
build_and_push:
name: Build and push docker image
runs-on: ubuntu-20.04
runs-on: [self-hosted, heavy]
steps:
- name: Login to DockerHub
if: ${{ github.event == 'push' }}
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USER }}
@@ -36,6 +38,6 @@ jobs:
with:
context: ${{ github.workspace }}/docker/ci
platforms: linux/amd64,linux/arm64
push: true
push: ${{ github.event == 'push' }}
tags: ${{ steps.meta.outputs.tags }}