GHA CI fixes.

This commit is contained in:
Andrey Semashev 2024-05-15 02:29:22 +03:00
parent 737ae951e8
commit dbbbc2df9e

View File

@ -97,11 +97,19 @@ jobs:
rm -rf "../snapshot" rm -rf "../snapshot"
git submodule update --init --recursive --jobs $GIT_FETCH_JOBS libs/config libs/headers tools/boost_install tools/build git submodule update --init --recursive --jobs $GIT_FETCH_JOBS libs/config libs/headers tools/boost_install tools/build
./bootstrap.sh ./bootstrap.sh
echo "B2=\"$PWD/b2\"" >> $GITHUB_ENV echo "B2=$PWD/b2" >> $GITHUB_ENV
- name: Run tests - name: Run base tests
run: | run: |
cd boost-root cd "boost-root/tools/$GIT_MODULE/test"
cd "tools/$GIT_MODULE/test" && "$B2" -j $BUILD_JOBS "$B2" -j $BUILD_JOBS
cd "tools/$GIT_MODULE/test/doxygen" && "$B2" -j $BUILD_JOBS
cd "tools/$GIT_MODULE/test/more" && python run-tests.py - name: Run Doxygen tests
run: |
cd "boost-root/tools/$GIT_MODULE/test/doxygen"
"$B2" -j $BUILD_JOBS
- name: Run more tests
run: |
cd "boost-root/tools/$GIT_MODULE/test/more"
python run-tests.py