fix: ci cd
This commit is contained in:
parent
dfc4f06f1a
commit
ed604feba7
2 changed files with 6 additions and 2 deletions
7
.github/workflows/ccpp.yml
vendored
7
.github/workflows/ccpp.yml
vendored
|
@ -2,9 +2,9 @@ name: C/C++ CI
|
|||
|
||||
on:
|
||||
push:
|
||||
branches: [ master, add-* ]
|
||||
branches: [ cpp14, add-* ]
|
||||
pull_request:
|
||||
branches: [ master ]
|
||||
branches: [ cpp14 ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
|
@ -13,6 +13,9 @@ jobs:
|
|||
|
||||
steps:
|
||||
- uses: actions/checkout@v2
|
||||
# install dependencies
|
||||
- name: boost
|
||||
run: sudo apt-get update && sudo apt-get install -yq libboost1.65-dev
|
||||
- name: git_actions
|
||||
run: git submodule update --init --recursive
|
||||
- name: cmake
|
||||
|
|
|
@ -21,6 +21,7 @@
|
|||
#include <utility>
|
||||
#include <vector>
|
||||
#include <boost/optional.hpp>
|
||||
#include <boost/optional/optional_io.hpp>
|
||||
|
||||
namespace gtfs
|
||||
{
|
||||
|
|
Loading…
Add table
Reference in a new issue