Skip to content

Commit

Permalink
For now, build with bundled libmpdec in Ubuntu CIs
Browse files Browse the repository at this point in the history
  • Loading branch information
erlend-aasland committed May 5, 2024
1 parent 4f87c91 commit f8f4ea2
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions .github/workflows/build.yml
Expand Up @@ -232,7 +232,8 @@ jobs:
../cpython-ro-srcdir/configure \
--config-cache \
--with-pydebug \
--with-openssl=$OPENSSL_DIR
--with-openssl=$OPENSSL_DIR \
--with-system-libmpdec=no
build_ubuntu_free_threading:
name: 'Ubuntu (free-threading)'
Expand All @@ -246,7 +247,8 @@ jobs:
--config-cache \
--with-pydebug \
--with-openssl=$OPENSSL_DIR \
--disable-gil
--disable-gil \
--with-system-libmpdec=no
build_ubuntu_ssltests:
name: 'Ubuntu SSL tests with OpenSSL'
Expand Down Expand Up @@ -371,7 +373,8 @@ jobs:
../cpython-ro-srcdir/configure \
--config-cache \
--with-pydebug \
--with-openssl=$OPENSSL_DIR
--with-openssl=$OPENSSL_DIR \
--with-system-libmpdec=no
- name: Build CPython out-of-tree
working-directory: ${{ env.CPYTHON_BUILDDIR }}
run: make -j4
Expand Down Expand Up @@ -477,7 +480,7 @@ jobs:
save: ${{ github.event_name == 'push' }}
max-size: "200M"
- name: Configure CPython
run: ./configure --config-cache --with-address-sanitizer --without-pymalloc
run: ./configure --config-cache --with-address-sanitizer --without-pymalloc --with-system-libmpdec=no
- name: Build CPython
run: make -j4
- name: Display build info
Expand Down

0 comments on commit f8f4ea2

Please sign in to comment.