Skip to content

Commit 83cfda6

Browse files
test build 3
1 parent 125d583 commit 83cfda6

1 file changed

Lines changed: 4 additions & 3 deletions

File tree

.github/workflows/test-pr-new.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,15 @@ name: Check a pull request
33
on:
44
push:
55
branches:
6-
- 'new_build_image_test-xxx'
6+
- 'new_build_image_test'
77

88
jobs:
99
build_linux:
1010
strategy:
1111
matrix:
1212
configuration: [Debug, Release]
1313
compiler: [gcc-9, gcc-13, clang-16]
14+
arch: [x86_64]
1415
cmake_options: [""]
1516
include:
1617
# Also include configurations that check if the code compiles without the graphics backends
@@ -41,7 +42,7 @@ jobs:
4142
- name: ccache
4243
uses: hendrikmuhs/ccache-action@v1.2.23
4344
with:
44-
key: ${{ runner.os }}-${{ matrix.configuration }}-${{ matrix.compiler }}
45+
key: ${{ runner.os }}-${{ matrix.configuration }}-${{ matrix.compiler }}-${{ matrix.arch }}
4546
save: false # Caches are created by a separate job and only restored for PRs
4647
verbose: 1
4748
- name: Configure ccache
@@ -112,7 +113,7 @@ jobs:
112113
run: $GITHUB_WORKSPACE/ci/linux/configure_cmake.sh
113114
- name: Compile
114115
working-directory: ./build
115-
run: ninja all
116+
run: ninja -k 20 all
116117
- name: Run Tests
117118
working-directory: ./build
118119
env:

0 commit comments

Comments
 (0)