Skip to content

Commit

Permalink
Merge pull request #174 from BoostGSoC21/syntax_and_verify
Browse files Browse the repository at this point in the history
Syntax and temporary verification code
  • Loading branch information
ckormanyos authored Jan 6, 2025
2 parents c9dede1 + efcaaee commit c75dfa0
Show file tree
Hide file tree
Showing 2 changed files with 157 additions and 155 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/multiprecision.yml
Original file line number Diff line number Diff line change
Expand Up @@ -151,14 +151,14 @@ jobs:
strategy:
fail-fast: false
matrix:
compiler: [ g++ ]
standard: [ gnu++14, gnu++20 ]
suite: [ functions_df_gnu ]
steps:
- uses: actions/checkout@v4
with:
fetch-depth: '0'
- name: Set TOOLSET
run: echo ${{ matrix.compiler }} | awk '/^g/ { print "TOOLSET=gcc" } /^clang/ { print "TOOLSET=clang" }' >> $GITHUB_ENV
run: echo g++ | awk '/^g/ { print "TOOLSET=gcc" } /^clang/ { print "TOOLSET=clang" }' >> $GITHUB_ENV
- name: Add repository
continue-on-error: true
id: addrepo
Expand Down Expand Up @@ -191,7 +191,7 @@ jobs:
run: ./b2 headers
working-directory: ../boost-root
- name: Generate user config
run: 'echo "using $TOOLSET : : ${{ matrix.compiler }} : <cxxflags>-std=gnu++14 ;" > ~/user-config.jam'
run: 'echo "using $TOOLSET : : g++ : <cxxflags>-std=${{ matrix.standard }} ;" > ~/user-config.jam'
working-directory: ../boost-root
- name: Config Info
run: ../../../b2 print_config_info print_math_info toolset=$TOOLSET
Expand Down Expand Up @@ -234,7 +234,7 @@ jobs:
if: steps.retry1.outcome=='failure'
run: sudo apt-add-repository -y "ppa:ubuntu-toolchain-r/test"
- name: Install packages
run: sudo apt install g++-10 g++-11 clang-10 clang-11 libgmp-dev libmpfr-dev libtommath-dev libeigen3-dev libmpfi-dev libmpc-dev
run: sudo apt install g++-9 g++-10 g++-11 clang-10 clang-11 libgmp-dev libmpfr-dev libtommath-dev libeigen3-dev libmpfi-dev libmpc-dev
- name: Checkout main boost
run: git clone -b develop --depth 1 https://github.com/boostorg/boost.git ../boost-root
- name: Update tools/boostdep
Expand Down
Loading

0 comments on commit c75dfa0

Please sign in to comment.