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