From 246c3307f71586cb1ad3c40b87934fdf1d20c3de Mon Sep 17 00:00:00 2001 From: Alexander Taepper Date: Wed, 18 Dec 2024 18:28:39 +0100 Subject: [PATCH] remove linterAll job --- .github/workflows/ci.yml | 26 -------------------------- 1 file changed, 26 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 9ddb5a52b..e2ad11e93 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -227,29 +227,3 @@ jobs: cmake --build build/Debug --target ${file%.cpp}.o fi done - - - linterAll: - name: Build And Run linter - needs: dockerImageUnitTests - runs-on: ubuntu-latest - if: github.event_name == 'refs/heads/main' - steps: - - uses: actions/checkout@v4 - - - name: Set up Docker Buildx - uses: docker/setup-buildx-action@v3 - - - name: Build linter image - uses: docker/build-push-action@v5 - with: - context: . - push: false - target: linter - tags: ${{ env.DOCKER_TEST_IMAGE_NAME }} - cache-from: type=gha,scope=${{ github.ref_name }}-linter-image-cache - cache-to: type=gha,mode=max,scope=${{ github.ref_name }}-linter-image-cache - build-args: | - DEPENDENCY_IMAGE=${{ env.DOCKER_DEPENDENCY_IMAGE_NAME }}:commit-${{ github.event.pull_request.head.sha }} - -