From bf1d7f5c04de397a5eafa2f686f77f7ab3c67093 Mon Sep 17 00:00:00 2001 From: Ali Aghaeifar <11705505+aghaeifar@users.noreply.github.com> Date: Tue, 12 Mar 2024 12:07:01 +0100 Subject: [PATCH] Update CMake.yml --- .github/workflows/CMake.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/CMake.yml b/.github/workflows/CMake.yml index 6d851b8..d6bb253 100644 --- a/.github/workflows/CMake.yml +++ b/.github/workflows/CMake.yml @@ -11,11 +11,21 @@ env: BUILD_TYPE: Release jobs: + install: + name: Install Dependencies + runs-on: ubuntu-22.04 + steps: + - uses: actions/checkout@v3 + - name: Install General + run: | + sudo apt-get update + sudo apt-get install -y build-essential libboost-all-dev libssl-dev libffi-dev python3-dev gcc-11 g++-11 git cmake librocksdb-dev cron rpcbind libboost-system1.74.0 libboost-filesystem1.74.0 libboost-thread1.74.0 libboost-date-time1.74.0 libboost-chrono1.74.0 libboost-regex1.74.0 libboost-serialization1.74.0 libboost-program-options1.74.0 libicu70 + build: # The CMake configure and build commands are platform agnostic and should work equally well on Windows or Mac. # You can convert this to a matrix build if you need cross-platform coverage. # See: https://docs.github.com/en/free-pro-team@latest/actions/learn-github-actions/managing-complex-workflows#using-a-build-matrix - runs-on: ubuntu-latest + runs-on: ubuntu-22.04 steps: - uses: Jimver/cuda-toolkit@v0.2.10