From 3113551ed96a0549713d78a1e5859d14def1a372 Mon Sep 17 00:00:00 2001 From: AmroAlJundi Date: Fri, 2 Dec 2022 11:57:48 +0300 Subject: [PATCH] Set Ubuntu GitHub actions to run on Ubuntu 22.04 --- .github/workflows/docs_release.yml | 2 +- .github/workflows/testing.yml | 6 +++--- CMakeLists.txt | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/docs_release.yml b/.github/workflows/docs_release.yml index 3138bff7..a0abff9b 100644 --- a/.github/workflows/docs_release.yml +++ b/.github/workflows/docs_release.yml @@ -20,7 +20,7 @@ jobs: # This workflow contains a single job called "build" build: # The type of runner that the job will run on - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 # Steps represent a sequence of tasks that will be executed as part of the job diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index b6edecae..45fc4e1e 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -77,7 +77,7 @@ jobs: run: ctest -V test_ubuntu: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 @@ -115,7 +115,7 @@ jobs: test_header_only: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 @@ -152,7 +152,7 @@ jobs: test_opt_dep: - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: actions/checkout@v3 diff --git a/CMakeLists.txt b/CMakeLists.txt index edd54713..e98b35f0 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -6,7 +6,7 @@ else() cmake_policy(VERSION 3.18) endif() -project( SparseBase_project VERSION 0.3.0 ) +project( SparseBase_project VERSION 0.3.1 ) option(RUN_TESTS "Enable running tests" OFF) option(_HEADER_ONLY "Use the library as a header only library?" OFF) option(USE_CUDA "Enable CUDA" OFF)