From bbae7445c846e281225766bcafc11de07f73ecc4 Mon Sep 17 00:00:00 2001 From: Ali Aghaeifar <11705505+aghaeifar@users.noreply.github.com> Date: Wed, 18 Dec 2024 21:23:27 +0100 Subject: [PATCH] Update CMake.yml --- .github/workflows/CMake.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/CMake.yml b/.github/workflows/CMake.yml index 11ead08..bc52484 100644 --- a/.github/workflows/CMake.yml +++ b/.github/workflows/CMake.yml @@ -2,7 +2,7 @@ name: CMake on: push: - branches: [ "main" ] + branches: [ "main", "dev" ] pull_request: branches: [ "main" ] @@ -21,10 +21,9 @@ jobs: - uses: Jimver/cuda-toolkit@v0.2.16 id: cuda-toolkit with: - cuda: '12.5.0' + cuda: '12.6.1' - - name: dependencies install - id: dependencies-install + - name: Install dependencies run: sudo apt-get update && sudo apt-get install -yq libboost-all-dev libhdf5-dev libtbb-dev - uses: actions/checkout@v3 @@ -38,7 +37,6 @@ jobs: run: cmake -B ${{github.workspace}}/build -DCMAKE_BUILD_TYPE=${{env.BUILD_TYPE}} - name: Build - # Build your program with the given configuration run: cmake --build ${{github.workspace}}/build --config ${{env.BUILD_TYPE}}