diff --git a/.github/workflows/cpp_tests.yml b/.github/workflows/cpp_tests.yml index bd12f3a3b..7b5cf45cd 100644 --- a/.github/workflows/cpp_tests.yml +++ b/.github/workflows/cpp_tests.yml @@ -9,7 +9,7 @@ on: jobs: cpp-tests-debug-with-debug-layers: runs-on: ubuntu-latest - container: axsauze/kompute-builder:0.3 + container: axsauze/kompute-builder:0.4 steps: - name: Install vulkaninfo run: apt update -y && apt install -y vulkan-tools @@ -28,6 +28,7 @@ jobs: run-test: false ctest-options: -V configure-options: -DKOMPUTE_OPT_BUILD_TESTS=ON -DKOMPUTE_OPT_DISABLE_VK_DEBUG_LAYERS=OFF -DKOMPUTE_OPT_DISABLE_VULKAN_VERSION_CHECK=ON -DKOMPUTE_OPT_USE_BUILT_IN_VULKAN_HEADER=ON + build-options: --parallel - name: Run tests env: VK_ICD_FILENAMES: "/swiftshader/vk_swiftshader_icd.json" @@ -35,10 +36,8 @@ jobs: cpp-tests-release-with-debug-layers: runs-on: ubuntu-latest - container: axsauze/kompute-builder:0.3 + container: axsauze/kompute-builder:0.4 steps: - - name: Install vulkaninfo - run: apt update -y && apt install -y vulkan-tools - name: Checkout uses: actions/checkout@v3 with: @@ -54,6 +53,7 @@ jobs: run-test: false ctest-options: -V configure-options: -DKOMPUTE_OPT_BUILD_TESTS=ON -DKOMPUTE_OPT_DISABLE_VK_DEBUG_LAYERS=OFF -DKOMPUTE_OPT_DISABLE_VULKAN_VERSION_CHECK=ON -DKOMPUTE_OPT_USE_BUILT_IN_VULKAN_HEADER=ON + build-options: --parallel - name: Run tests env: VK_ICD_FILENAMES: "/swiftshader/vk_swiftshader_icd.json" @@ -61,10 +61,8 @@ jobs: cpp-tests-debug-without-debug-layers: runs-on: ubuntu-latest - container: axsauze/kompute-builder:0.3 + container: axsauze/kompute-builder:0.4 steps: - - name: Install vulkaninfo - run: apt update -y && apt install -y vulkan-tools - name: Checkout uses: actions/checkout@v3 with: @@ -80,6 +78,7 @@ jobs: run-test: false ctest-options: -V configure-options: -DKOMPUTE_OPT_BUILD_TESTS=ON -DKOMPUTE_OPT_DISABLE_VK_DEBUG_LAYERS=ON -DKOMPUTE_OPT_DISABLE_VULKAN_VERSION_CHECK=ON -DKOMPUTE_OPT_USE_BUILT_IN_VULKAN_HEADER=ON + build-options: --parallel - name: Run tests env: VK_ICD_FILENAMES: "/swiftshader/vk_swiftshader_icd.json" @@ -87,10 +86,8 @@ jobs: cpp-tests-release-without-debug-layers: runs-on: ubuntu-latest - container: axsauze/kompute-builder:0.3 + container: axsauze/kompute-builder:0.4 steps: - - name: Install vulkaninfo - run: apt update -y && apt install -y vulkan-tools - name: Checkout uses: actions/checkout@v3 with: @@ -106,6 +103,7 @@ jobs: run-test: false ctest-options: -V configure-options: -DKOMPUTE_OPT_BUILD_TESTS=ON -DKOMPUTE_OPT_DISABLE_VK_DEBUG_LAYERS=ON -DKOMPUTE_OPT_DISABLE_VULKAN_VERSION_CHECK=ON -DKOMPUTE_OPT_USE_BUILT_IN_VULKAN_HEADER=ON + build-options: --parallel - name: Run tests env: VK_ICD_FILENAMES: "/swiftshader/vk_swiftshader_icd.json"