mirror of
https://github.com/zlib-ng/minizip-ng
synced 2025-03-28 21:13:18 +00:00
![dependabot[bot]](/assets/img/avatar_default.png)
Bumps [codecov/codecov-action](https://github.com/codecov/codecov-action) from 4 to 5. - [Release notes](https://github.com/codecov/codecov-action/releases) - [Changelog](https://github.com/codecov/codecov-action/blob/main/CHANGELOG.md) - [Commits](https://github.com/codecov/codecov-action/compare/v4...v5) --- updated-dependencies: - dependency-name: codecov/codecov-action dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] <support@github.com>
321 lines
11 KiB
YAML
321 lines
11 KiB
YAML
name: Build
|
|
on: [push, pull_request]
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
|
|
cancel-in-progress: true
|
|
jobs:
|
|
ci:
|
|
name: ${{ matrix.name }}
|
|
runs-on: ${{ matrix.os }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
include:
|
|
- name: Ubuntu 20 GCC
|
|
os: ubuntu-20.04
|
|
compiler: gcc
|
|
cxx-compiler: g++
|
|
|
|
- name: Ubuntu GCC ASAN
|
|
os: ubuntu-latest
|
|
compiler: gcc
|
|
cxx-compiler: g++
|
|
cmake-args: -D MZ_SANITIZER=Address
|
|
codecov: ubuntu_gcc_asan
|
|
|
|
- name: Ubuntu GCC UBSAN
|
|
os: ubuntu-latest
|
|
compiler: gcc
|
|
cxx-compiler: g++
|
|
cmake-args: -D MZ_SANITIZER=Undefined
|
|
codecov: ubuntu_gcc_undefined
|
|
|
|
- name: Ubuntu GCC MSAN
|
|
os: ubuntu-latest
|
|
compiler: gcc
|
|
cxx-compiler: g++
|
|
cmake-args: -D MZ_SANITIZER=Memory
|
|
codecov: ubuntu_gcc_msan
|
|
|
|
# No code coverage on release builds
|
|
- name: Ubuntu 20 Clang
|
|
os: ubuntu-20.04
|
|
compiler: clang
|
|
cxx-compiler: clang++
|
|
deploy: true
|
|
deploy-name: linux
|
|
|
|
- name: Ubuntu 20 Clang 6.0
|
|
os: ubuntu-20.04
|
|
compiler: clang-6.0
|
|
cxx-compiler: clang++-6.0
|
|
version: "6.0"
|
|
packages: llvm-6.0 clang-6.0
|
|
|
|
- name: Ubuntu GCC
|
|
os: ubuntu-latest
|
|
compiler: gcc
|
|
cxx-compiler: g++
|
|
cmake-args: -D MZ_CODE_COVERAGE=ON
|
|
codecov: ubuntu_gcc
|
|
|
|
- name: Ubuntu GCC OSB
|
|
os: ubuntu-latest
|
|
compiler: gcc
|
|
cxx-compiler: g++
|
|
build-dir: ../build
|
|
build-src-dir: ../minizip-ng
|
|
|
|
- name: Ubuntu Clang
|
|
os: ubuntu-latest
|
|
compiler: clang-14
|
|
cxx-compiler: clang++-14
|
|
cmake-args: -D MZ_CODE_COVERAGE=ON
|
|
codecov: ubuntu_clang
|
|
packages: clang-14 llvm-14
|
|
gcov-exec: llvm-cov-14 gcov
|
|
|
|
- name: Ubuntu Clang No Zlib
|
|
os: ubuntu-latest
|
|
compiler: clang-14
|
|
cxx-compiler: clang++-14
|
|
cmake-args: -D MZ_CODE_COVERAGE=ON -D MZ_ZLIB=OFF
|
|
codecov: ubuntu_clang_no_zlib
|
|
packages: clang-14 llvm-14
|
|
gcov-exec: llvm-cov-14 gcov
|
|
|
|
- name: Ubuntu Clang No Bzip2
|
|
os: ubuntu-latest
|
|
compiler: clang-14
|
|
cxx-compiler: clang++-14
|
|
cmake-args: -D MZ_CODE_COVERAGE=ON -D MZ_BZIP=OFF
|
|
codecov: ubuntu_clang_no_bzip2
|
|
packages: clang-14 llvm-14
|
|
gcov-exec: llvm-cov-14 gcov
|
|
|
|
- name: Ubuntu Clang No LZMA
|
|
os: ubuntu-latest
|
|
compiler: clang-14
|
|
cxx-compiler: clang++-14
|
|
cmake-args: -D MZ_CODE_COVERAGE=ON -D MZ_LZMA=OFF
|
|
codecov: ubuntu_clang_no_lzma
|
|
packages: clang-14 llvm-14
|
|
gcov-exec: llvm-cov-14 gcov
|
|
|
|
- name: Ubuntu Clang No Zstd
|
|
os: ubuntu-latest
|
|
compiler: clang-14
|
|
cxx-compiler: clang++-14
|
|
cmake-args: -D MZ_CODE_COVERAGE=ON -D MZ_ZSTD=OFF
|
|
codecov: ubuntu_clang_no_zstd
|
|
packages: clang-14 llvm-14
|
|
gcov-exec: llvm-cov-14 gcov
|
|
|
|
- name: Ubuntu Clang No Pkcrypt
|
|
os: ubuntu-latest
|
|
compiler: clang-14
|
|
cxx-compiler: clang++-14
|
|
cmake-args: -D MZ_CODE_COVERAGE=ON -D MZ_PKCRYPT=OFF
|
|
codecov: ubuntu_clang_no_pkcrypt
|
|
packages: clang-14 llvm-14
|
|
gcov-exec: llvm-cov-14 gcov
|
|
|
|
- name: Ubuntu Clang No Winzip AES
|
|
os: ubuntu-latest
|
|
compiler: clang-14
|
|
cxx-compiler: clang++-14
|
|
cmake-args: -D MZ_CODE_COVERAGE=ON -D MZ_WZAES=OFF
|
|
codecov: ubuntu_clang_no_winzip_aes
|
|
packages: clang-14 llvm-14
|
|
gcov-exec: llvm-cov-14 gcov
|
|
|
|
- name: Ubuntu Clang No Encryption
|
|
os: ubuntu-latest
|
|
compiler: clang-14
|
|
cxx-compiler: clang++-14
|
|
cmake-args: -D MZ_CODE_COVERAGE=ON -D MZ_PKCRYPT=OFF -D MZ_WZAES=OFF
|
|
codecov: ubuntu_clang_no_encryption
|
|
packages: clang-14 llvm-14
|
|
gcov-exec: llvm-cov-14 gcov
|
|
|
|
- name: Ubuntu Clang Compress Only
|
|
os: ubuntu-latest
|
|
compiler: clang-14
|
|
cxx-compiler: clang++-14
|
|
cmake-args: -D MZ_CODE_COVERAGE=ON -D MZ_COMPRESS_ONLY=ON
|
|
codecov: ubuntu_clang_compress_only
|
|
packages: clang-14 llvm-14
|
|
gcov-exec: llvm-cov-14 gcov
|
|
|
|
- name: Ubuntu Clang Decompress Only
|
|
os: ubuntu-latest
|
|
compiler: clang-14
|
|
cxx-compiler: clang++-14
|
|
cmake-args: -D MZ_CODE_COVERAGE=ON -D MZ_DECOMPRESS_ONLY=ON
|
|
codecov: ubuntu_clang_decompress_only
|
|
packages: clang-14 llvm-14
|
|
gcov-exec: llvm-cov-14 gcov
|
|
|
|
- name: Ubuntu Clang OpenSSL
|
|
os: ubuntu-latest
|
|
compiler: clang-14
|
|
cxx-compiler: clang++-14
|
|
cmake-args: -D MZ_CODE_COVERAGE=ON -D MZ_OPENSSL=ON
|
|
codecov: ubuntu_clang_openssl
|
|
packages: clang-14 llvm-14
|
|
gcov-exec: llvm-cov-14 gcov
|
|
|
|
# No code coverage supported
|
|
- name: Windows MSVC
|
|
os: windows-latest
|
|
compiler: cl
|
|
# Don't use find_package for 3rd party libraries which are installed incorrectly on GitHub CI instances
|
|
cmake-args: -D MZ_FORCE_FETCH_LIBS=ON
|
|
deploy: true
|
|
deploy-name: windows
|
|
|
|
# # No code coverage supported
|
|
# - name: Windows MSVC XP
|
|
# os: windows-latest
|
|
# compiler: cl
|
|
# # Don't use find_package for 3rd party libraries which are installed incorrectly on GitHub CI instances
|
|
# cmake-args: -D MZ_FORCE_FETCH_LIBS=ON -D CMAKE_C_FLAGS="-D_WIN32_WINNT=0x501" -D CMAKE_CXX_FLAGS="-D_WIN32_WINNT=0x501"
|
|
# deploy: true
|
|
# deploy-name: windowsxp
|
|
|
|
- name: Windows GCC Code Coverage
|
|
os: windows-latest
|
|
compiler: gcc
|
|
cxx-compiler: g++
|
|
# Don't use find_package for 3rd party libraries which are installed incorrectly on GitHub CI instances
|
|
cmake-args: -D MZ_CODE_COVERAGE=ON -D MZ_FORCE_FETCH_LIBS=ON -G Ninja
|
|
codecov: windows_gcc
|
|
|
|
# No code coverage on release builds
|
|
- name: macOS Xcode
|
|
os: macos-latest
|
|
deploy: true
|
|
deploy-name: macos
|
|
|
|
- name: macOS Xcode Code Coverage
|
|
os: macOS-latest
|
|
cmake-args: -D MZ_CODE_COVERAGE=ON
|
|
codecov: macos_xcode
|
|
|
|
- name: macOS Xcode LibCompression
|
|
os: macOS-latest
|
|
cmake-args: -D MZ_CODE_COVERAGE=ON -D MZ_LIBCOMP=ON
|
|
codecov: macos_xcode_libcompression
|
|
|
|
- name: macOS Xcode OpenSSL
|
|
os: macos-latest
|
|
cmake-args: -D MZ_CODE_COVERAGE=ON -D MZ_OPENSSL=ON
|
|
codecov: macos_xcode_openssl
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Install packages (macOS)
|
|
if: runner.os == 'macOS'
|
|
run: brew install pkgconfig ${{ matrix.packages }}
|
|
|
|
- name: Install packages (Ubuntu)
|
|
if: runner.os == 'Linux' && matrix.packages
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get install ${{ matrix.packages }}
|
|
|
|
- name: Install packages (Windows)
|
|
if: runner.os == 'Windows' && matrix.compiler == 'gcc'
|
|
run: |
|
|
# strawberryperl installs incompatible libraries so remove it
|
|
choco uninstall --no-progress strawberryperl
|
|
choco install ninja --no-progress
|
|
|
|
- name: Generate project files
|
|
shell: bash
|
|
run: |
|
|
cmake -S ${{ matrix.build-src-dir || '.' }} -B ${{ matrix.build-dir || '.' }} ${{ matrix.cmake-args }} \
|
|
-D MZ_BUILD_TESTS=ON \
|
|
-D MZ_BUILD_UNIT_TESTS=ON \
|
|
-D BUILD_SHARED_LIBS=OFF \
|
|
-D CMAKE_BUILD_TYPE=Release
|
|
env:
|
|
CC: ${{ matrix.compiler }}
|
|
CXX: ${{ matrix.cxx-compiler }}
|
|
CFLAGS: ${{ matrix.cflags }}
|
|
LDFLAGS: ${{ matrix.ldflags }}
|
|
|
|
- name: Compile source code
|
|
run: cmake --build ${{ matrix.build-dir || '.' }} --config ${{ matrix.build-config || 'Release' }}
|
|
|
|
- name: Run test cases
|
|
run: ctest --output-on-failure -C ${{ matrix.build-config || 'Release' }}
|
|
working-directory: ${{ matrix.build-dir }}
|
|
|
|
- name: Setup python
|
|
uses: actions/setup-python@v5
|
|
if: always() && matrix.codecov
|
|
with:
|
|
python-version: '3.x'
|
|
|
|
- name: Generate coverage report
|
|
shell: bash
|
|
if: always() && matrix.codecov
|
|
run: |
|
|
python3 -u -m pip install gcovr
|
|
python3 -m gcovr \
|
|
--exclude-unreachable-branches \
|
|
--gcov-ignore-parse-errors \
|
|
--gcov-executable "${{ matrix.gcov-exec || 'gcov' }}" \
|
|
--root ${{ matrix.build-src-dir || '.' }} \
|
|
--xml \
|
|
--output coverage.xml \
|
|
--verbose
|
|
|
|
- name: Upload coverage report
|
|
uses: codecov/codecov-action@v5
|
|
if: always() && matrix.codecov && env.CODECOV_TOKEN != ''
|
|
with:
|
|
token: ${{ secrets.CODECOV_TOKEN }}
|
|
flags: ${{ matrix.codecov }}
|
|
name: ${{ matrix.name }}
|
|
directory: ${{ matrix.build-src-dir || '.' }}
|
|
verbose: true
|
|
fail_ci_if_error: true
|
|
env:
|
|
CODECOV_TOKEN: "${{ secrets.CODECOV_TOKEN }}"
|
|
|
|
- name: Package release (Ubuntu/macOS)
|
|
if: (runner.os == 'Linux' || runner.os == 'macOS') && matrix.deploy && startsWith(github.ref, 'refs/tags/')
|
|
run: ls -R mini*zip | tar -czvf minizip-ng-${{ matrix.deploy-name }}.tar.gz -T -
|
|
|
|
- name: Upload release (Ubuntu/macOS)
|
|
uses: svenstaro/upload-release-action@2.9.0
|
|
if: (runner.os == 'Linux' || runner.os == 'macOS') && matrix.deploy && startsWith(github.ref, 'refs/tags/') && env.GITHUB_TOKEN != ''
|
|
with:
|
|
asset_name: minizip-ng-${{ matrix.deploy-name }}.tar.gz
|
|
file: ${{ matrix.build-dir || '.' }}/minizip-ng-${{ matrix.deploy-name }}.tar.gz
|
|
tag: ${{ github.ref }}
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
overwrite: true
|
|
env:
|
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
|
|
|
- name: Package release (Windows)
|
|
if: runner.os == 'Windows' && matrix.deploy && startsWith(github.ref, 'refs/tags/')
|
|
run: 7z a -tzip minizip-ng-${{ matrix.deploy-name }}.zip ./Release/mini*zip.exe
|
|
|
|
- name: Upload release (Windows)
|
|
uses: svenstaro/upload-release-action@2.9.0
|
|
if: runner.os == 'Windows' && matrix.deploy && startsWith(github.ref, 'refs/tags/') && env.GITHUB_TOKEN != ''
|
|
with:
|
|
asset_name: minizip-ng-${{ matrix.deploy-name }}.zip
|
|
file: ${{ matrix.build-dir || '.' }}/minizip-ng-${{ matrix.deploy-name }}.zip
|
|
tag: ${{ github.ref }}
|
|
repo_token: ${{ secrets.GITHUB_TOKEN }}
|
|
overwrite: true
|
|
env:
|
|
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|