Skip to content

Commit 7794e36

Browse files
committed
Update CI workflow to include GCC and C++ compilers in manylinux2014 container for enhanced build capabilities.
1 parent e843a65 commit 7794e36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919

2020
- name: Build in manylinux2014 container
2121
run: |
22-
docker run --rm -v "${{ github.workspace }}:/project" -w /project quay.io/pypa/manylinux2014_x86_64 /bin/bash -c "yum install -y cmake3 && ln -sf /usr/bin/cmake3 /usr/bin/cmake && cmake -S . -B build -DCMAKE_BUILD_TYPE=Release && cmake --build build -j\$(nproc)"
22+
docker run --rm -v "${{ github.workspace }}:/project" -w /project quay.io/pypa/manylinux2014_x86_64 /bin/bash -c "yum install -y cmake3 devtoolset-12-gcc devtoolset-12-gcc-c++ && ln -sf /usr/bin/cmake3 /usr/bin/cmake && source /opt/rh/devtoolset-12/enable && cmake -S . -B build -DCMAKE_BUILD_TYPE=Release && cmake --build build -j\$(nproc)"
2323
2424
- name: Upload library artifact
2525
uses: actions/upload-artifact@v4

0 commit comments

Comments
 (0)