diff options
| author | Dan Engelbrecht <[email protected]> | 2022-05-25 17:24:28 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-05-25 17:24:28 +0200 |
| commit | f3114d674dd9d80c45eb13eca1501794cc21fcf7 (patch) | |
| tree | 4d82f6dfcb3e058141ffc1965ca081f2b8d491cd /.github/workflows | |
| parent | Merge pull request #108 from EpicGames/de/drop-namespace (diff) | |
| parent | re-enable tests (diff) | |
| download | zen-f3114d674dd9d80c45eb13eca1501794cc21fcf7.tar.xz zen-f3114d674dd9d80c45eb13eca1501794cc21fcf7.zip | |
Merge pull request #107 from EpicGames/de/single-worker-clang-verify
run clang format on single instance, don't wait for clang-format
Diffstat (limited to '.github/workflows')
| -rw-r--r-- | .github/workflows/self_host_build.yml | 22 |
1 files changed, 5 insertions, 17 deletions
diff --git a/.github/workflows/self_host_build.yml b/.github/workflows/self_host_build.yml index 3864151ce..8bb57a4b4 100644 --- a/.github/workflows/self_host_build.yml +++ b/.github/workflows/self_host_build.yml @@ -9,30 +9,19 @@ jobs: clang-format: name: Check clang-format runs-on: [self-hosted, linux, x64] - strategy: - matrix: - path: - - 'zen' - - 'zencore' - - 'zencore-test' - - 'zenhttp' - - 'zenserver-test' - - 'zenstore' - - 'zenstore-test' - - 'zentest-appstub' - - 'zenutil' - - 'zenserver' + steps: - uses: actions/checkout@v2 - - name: clang-format ${{ matrix.path }} + + - name: clang-format uses: jidicula/[email protected] with: clang-format-version: '13' - check-path: ${{ matrix.path }} + check-path: '.' + exclude-regex: (.*thirdparty.*) windows-build: name: Build Windows - needs: clang-format runs-on: [self-hosted, windows, x64] strategy: matrix: @@ -81,7 +70,6 @@ jobs: linux-build: name: Build Linux - needs: clang-format runs-on: [self-hosted, linux, x64] strategy: matrix: |