File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -3,14 +3,15 @@ name: Check a pull request
33on :
44 push :
55 branches :
6- - ' new_build_image_test-xxx '
6+ - ' new_build_image_test'
77
88jobs :
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
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 :
You can’t perform that action at this time.
0 commit comments