Removed spdlog dep from GH actions

This commit is contained in:
Bartek Kryza
2022-06-08 23:51:01 +02:00
parent 90da2e5238
commit a8d907d154
2 changed files with 3 additions and 3 deletions

View File

@@ -13,7 +13,7 @@ jobs:
- name: Update package database - name: Update package database
run: sudo apt -y update run: sudo apt -y update
- name: Install deps - name: Install deps
run: sudo apt -y install git make gcc-10 g++-10 ccache cmake libyaml-cpp-dev libfmt-dev libspdlog-dev clang-12 libclang-12-dev libclang-cpp12-dev lcov run: sudo apt -y install git make gcc-10 g++-10 ccache cmake libyaml-cpp-dev clang-12 libclang-12-dev libclang-cpp12-dev lcov
- name: Select g++ version - name: Select g++ version
run: | run: |
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 10 sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 10

View File

@@ -40,10 +40,10 @@ that you have the following dependencies installed:
```bash ```bash
# Ubuntu # Ubuntu
apt install ccache cmake libyaml-cpp-dev libfmt-dev libspdlog-dev clang-12 libclang-12-dev libclang-cpp12-dev apt install ccache cmake libyaml-cpp-dev clang-12 libclang-12-dev libclang-cpp12-dev
# macos # macos
brew install ccache cmake llvm fmt spdlog yaml-cpp brew install ccache cmake llvm yaml-cpp
``` ```
Then proceed with building the sources: Then proceed with building the sources: