Install boost
This commit is contained in:
parent
0e0bc44651
commit
453345cedf
1 changed files with 28 additions and 0 deletions
28
.github/workflows/build-and-test.yml
vendored
28
.github/workflows/build-and-test.yml
vendored
|
|
@ -4,6 +4,20 @@ jobs:
|
|||
name: Build and run tests in Release mode
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt-get install -y \
|
||||
libboost-thread-dev \
|
||||
libboost-iostreams-dev \
|
||||
libboost-date-time-dev \
|
||||
libboost-system-dev \
|
||||
libboost-filesystem-dev \
|
||||
libboost-program-options-dev \
|
||||
libboost-chrono-dev \
|
||||
libboost-test-dev \
|
||||
libboost-context-dev \
|
||||
libboost-regex-dev \
|
||||
libboost-coroutine-dev
|
||||
- uses: actions/checkout@v1
|
||||
with:
|
||||
submodules: recursive
|
||||
|
|
@ -33,6 +47,20 @@ jobs:
|
|||
name: Build and run tests in Debug mode
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- name: Install dependencies
|
||||
run: |
|
||||
sudo apt-get install -y \
|
||||
libboost-thread-dev \
|
||||
libboost-iostreams-dev \
|
||||
libboost-date-time-dev \
|
||||
libboost-system-dev \
|
||||
libboost-filesystem-dev \
|
||||
libboost-program-options-dev \
|
||||
libboost-chrono-dev \
|
||||
libboost-test-dev \
|
||||
libboost-context-dev \
|
||||
libboost-regex-dev \
|
||||
libboost-coroutine-dev
|
||||
- uses: actions/checkout@v1
|
||||
with:
|
||||
submodules: recursive
|
||||
|
|
|
|||
Loading…
Reference in a new issue