Skip to content

Switched to using Boost's multi index container for the unique table #10

Switched to using Boost's multi index container for the unique table

Switched to using Boost's multi index container for the unique table #10

name: Test VDS Project
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Install GTest
run: sudo apt-get install libgtest-dev && cd /usr/src/gtest && sudo cmake CMakeLists.txt && sudo make && sudo cp lib/*.a /usr/lib && sudo ln -s /usr/lib/libgtest.a /usr/local/lib/libgtest.a && sudo ln -s /usr/lib/libgtest_main.a /usr/local/lib/libgtest_main.a
- name: Install other dependencies
run: sudo apt-get install libboost-all-dev
- name: Build VDSProject_23Group7
run: mkdir build && cd build && cmake .. && make
- name: Test VDSProject_23Group7
run: cd build/src/test && ./VDSProject_test