Skip to content

Commit

Permalink
Fixed CODECOV_TOKEN not existing in gcov step.
Browse files Browse the repository at this point in the history
  • Loading branch information
nmoinvaz committed Nov 19, 2022
1 parent b877ac4 commit 537cbf7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ jobs:
SSL_CERT_FILE: test.pem

- name: Generate coverage report
if: always() && matrix.codecov && env.CODECOV_TOKEN != ''
if: always() && matrix.codecov
run: |
python3 -u -m pip install --user gcovr --ignore-installed
python3 -m gcovr \
Expand Down
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ option(MZ_PKCRYPT "Enables PKWARE traditional encryption" ON)
option(MZ_WZAES "Enables WinZIP AES encryption" ON)
option(MZ_OPENSSL "Enables OpenSSL for encryption" ${UNIX})
option(MZ_LIBBSD "Enable libbsd crypto random" ${UNIX})
option(MZ_SIGNING "Enables zip signing support" ON)
option(MZ_SIGNING "Enables zip signing support" OFF)
# Character conversion options
option(MZ_ICONV "Enables iconv for string encoding conversion" ON)
# Code generation options
Expand Down

0 comments on commit 537cbf7

Please sign in to comment.