route: calculate best departure time first in reverse calculation #578
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: C/C++ CI | |
| on: | |
| push: | |
| branches: [ v2c ] | |
| pull_request: | |
| branches: [ v2c ] | |
| jobs: | |
| build: | |
| name: Test build on ${{ matrix.os }} | |
| runs-on: ${{ matrix.os }} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macOS-latest] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| submodules: recursive | |
| - name: Install deps | |
| if: matrix.os == 'ubuntu-latest' | |
| run: | | |
| sudo apt-get update | |
| sudo apt-get install libboost-all-dev libexpat1-dev libjsoncpp-dev libspdlog-dev libcapnp-dev capnproto nlohmann-json3-dev | |
| - name: Install deps | |
| if: matrix.os == 'macOS-latest' | |
| run: | | |
| brew update | |
| # Temporary Workaround for conflict with multiple python in brew | |
| brew install --overwrite python@3.12 python@3.11 python@3.10 | |
| brew install autoconf automake libtool pkg-config | |
| brew install boost | |
| brew info boost | |
| brew install capnp | |
| brew install spdlog | |
| brew install nlohmann-json | |
| - name: Gen configure | |
| run: autoreconf -i | |
| - name: configure in ubuntu | |
| if: matrix.os == 'ubuntu-latest' | |
| run: ./configure | |
| - name: configure | |
| if: matrix.os == 'macOS-latest' | |
| run: ./configure --with-boost-libdir=/opt/homebrew/Cellar/boost/1.89.0/lib | |
| - name: make | |
| run: make | |
| - name: make check | |
| run: make check | |