Skip to content

Commit 8c33602

Browse files
committed
Disable gcc and deps=off combo
1 parent 4fa9e5c commit 8c33602

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -67,6 +67,7 @@ jobs:
6767
echo "CMAKE_FLAGS_EXTRA=-DBUILD_DEPENDENCIES=OFF" >> $GITHUB_ENV
6868
6969
- name: Build repository
70+
if: ${{ !(matrix.compiler.name == 'gcc-14' && matrix.openssl == 'deps-off') }}
7071
run: |
7172
$CC --version
7273
$CXX --version
@@ -76,13 +77,15 @@ jobs:
7677
7778
- name: Configure AWS Credentials
7879
uses: aws-actions/configure-aws-credentials@v4
80+
if: ${{ !(matrix.compiler.name == 'gcc-14' && matrix.openssl == 'deps-off') }}
7981
with:
8082
role-to-assume: ${{ secrets.AWS_ROLE_TO_ASSUME }}
8183
role-session-name: ${{ secrets.AWS_ROLE_SESSION_NAME }}
8284
aws-region: ${{ secrets.AWS_REGION }}
8385
role-duration-seconds: 3600
8486

8587
- name: Run tests
88+
if: ${{ !(matrix.compiler.name == 'gcc-14' && matrix.openssl == 'deps-off') }}
8689
working-directory: ./build
8790
run: |
8891
./tst/producer_test

0 commit comments

Comments
 (0)