Split into lines; fix cd

This commit is contained in:
Peter Dimov
2020-11-20 01:17:02 +02:00
parent 43dd83b860
commit 8da42266d5

View File

@@ -33,19 +33,19 @@ jobs:
- uses: actions/checkout@v2
- name: Setup
run: |
REF=${GITHUB_BASE_REF:-$GITHUB_REF}
BOOST_BRANCH=develop && [ "$REF" == "master" ] && BOOST_BRANCH=master || true
cd ..
git clone -b $BOOST_BRANCH --depth 1 https://github.com/boostorg/boost.git boost-root
cd boost-root
cp -r $GITHUB_WORKSPACE/* libs/assert
git submodule update --init tools/boostdep
python tools/boostdep/depinst/depinst.py --git_args "--jobs 3" assert
./bootstrap.sh
./b2 headers
run:
- REF=${GITHUB_BASE_REF:-$GITHUB_REF}
- BOOST_BRANCH=develop && [ "$REF" == "master" ] && BOOST_BRANCH=master || true
- cd ..
- git clone -b $BOOST_BRANCH --depth 1 https://github.com/boostorg/boost.git boost-root
- cd boost-root
- cp -r $GITHUB_WORKSPACE/* libs/assert
- git submodule update --init tools/boostdep
- python tools/boostdep/depinst/depinst.py --git_args "--jobs 3" assert
- ./bootstrap.sh
- ./b2 headers
- name: Test
run: |
cd boost-root
./b2 -j3 libs/assert/test toolset=${{matrix.toolset}} cxxstd=${{matrix.cxxstd}}
run:
- cd ../boost-root
- ./b2 -j3 libs/assert/test toolset=${{matrix.toolset}} cxxstd=${{matrix.cxxstd}}