Output a dot every 1MB of FTP transfer #6
Workflow file for this run
This file contains 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: CI | |
on: | |
pull_request: | |
push: | |
branches: | |
- master | |
- develop | |
- feature/** | |
jobs: | |
posix: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Boost | |
run: | | |
BOOST_BRANCH=develop | |
cd .. | |
git clone -b $BOOST_BRANCH --depth 1 https://github.com/boostorg/boost.git boost-root | |
cd boost-root | |
git submodule update --init | |
./bootstrap.sh | |
./b2 -d0 -j2 headers | |
- name: Build tools | |
run: | | |
../boost-root/b2 -j2 --boost-root=../boost-root build//install |