File tree 1 file changed +4
-15
lines changed
1 file changed +4
-15
lines changed Original file line number Diff line number Diff line change @@ -600,11 +600,11 @@ jobs:
600
600
fail-fast : false
601
601
matrix :
602
602
centos :
603
- - 7 # GCC 4.8
604
- - 8
603
+ - centos7 # GCC 4.8
604
+ - stream8
605
605
606
606
name : " 🐍 3 • CentOS ${{ matrix.centos }} • x64"
607
- container : " centos:${{ matrix.centos }}"
607
+ container : " quay.io/centos/ centos:${{ matrix.centos }}"
608
608
609
609
steps :
610
610
- uses : actions/checkout@v2
@@ -619,22 +619,11 @@ jobs:
619
619
run : |
620
620
python3 -m pip install cmake -r tests/requirements.txt
621
621
622
- - name : VAR_BUILD_TYPE 7
623
- if : matrix.centos == 7
624
- run : echo MinSizeRel > VAR_BUILD_TYPE
625
-
626
- # Using Release to avoid segfault that appeared around 2021-06-04,
627
- # apparently when the gcc version changed from 8.3 to 8.4.
628
- - name : VAR_BUILD_TYPE 8
629
- if : matrix.centos == 8
630
- run : echo Release > VAR_BUILD_TYPE
631
-
632
- # Temporally disabling EIGEN due to SSL issue in CentOS 7
633
622
- name : Configure
634
623
shell : bash
635
624
run : >
636
625
cmake -S . -B build
637
- -DCMAKE_BUILD_TYPE=$(cat VAR_BUILD_TYPE)
626
+ -DCMAKE_BUILD_TYPE=MinSizeRel
638
627
-DPYBIND11_WERROR=ON
639
628
-DDOWNLOAD_CATCH=ON
640
629
-DDOWNLOAD_EIGEN=ON
You can’t perform that action at this time.
0 commit comments