Skip to content

Commit

Permalink
ux and dont push labels twice
Browse files Browse the repository at this point in the history
  • Loading branch information
prince-chrismc committed Apr 28, 2024
1 parent 029d691 commit d6649b1
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/ssl.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
- { tag: "OpenSSL_1_1_0i", name: "1.1.0i" } # Do not bump, there's a broken in the autoconfig script and it's not maintained
- { tag: "OpenSSL_1_0_2u", name: "1.0.2u" }
- { tag: "OpenSSL_1_0_1u", name: "1.0.1u" }
name: OpenSSL ${{ matrix.openssl.name }}
name: OpenSSL ${{ matrix.openssl.name }} - ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: lukka/get-cmake@latest
Expand All @@ -37,7 +37,7 @@ jobs:
- name: test
run: cmake --build . --target jwt-cpp-test-run

- if: github.event_name == 'push' && always()
- if: github.event_name == 'push' && matrix.os == 'ubuntu-latest' && always()
uses: ./.github/actions/badge
with:
category: openssl
Expand All @@ -52,11 +52,12 @@ jobs:
- uses: ./.github/actions/install/gtest
- uses: ./.github/actions/install/openssl
with:
version: "openssl-3.2.0"
version: "openssl-3.3.0"

- name: configure
run: cmake . -DJWT_BUILD_TESTS=ON -DOPENSSL_ROOT_DIR=/tmp -DCMAKE_CXX_FLAGS="-DOPENSSL_NO_DEPRECATED=1" -DCMAKE_C_FLAGS="-DOPENSSL_NO_DEPRECATED=1"
- run: make
run: cmake . -DJWT_BUILD_TESTS=ON -DOPENSSL_ROOT_DIR=/tmp -DCMAKE_CXX_FLAGS="-DOPENSSL_NO_DEPRECATED=1" -DCMAKE_C_FLAGS="-DOPENSSL_NO_DEPRECATED=1"
- name: build
run: cmake --build . --target jwt-cpp-test

libressl:
runs-on: ubuntu-latest
Expand Down

0 comments on commit d6649b1

Please sign in to comment.