Releasing 2.3.0 #146
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# SPDX-FileCopyrightText: 2021 Comcast Cable Communications Management, LLC | |
# SPDX-License-Identifier: Apache-2.0 | |
name: CI | |
on: | |
pull_request: | |
push: | |
paths-ignore: | |
- 'AUTHORS' | |
- 'LICENSE' | |
- 'NOTICE' | |
- '**.md' | |
- '.gitignore' | |
tags-ignore: | |
- 'v[0-9]+.[0-9]+.[0-9]+' | |
branches: | |
- main | |
workflow_dispatch: | |
jobs: | |
test-openssl-1_1: | |
uses: xmidt-org/.github/.github/workflows/meson-unit-test.yml@main | |
with: | |
# cjson & openssl | |
packages: libcjson-dev libssl-dev | |
brew-packages: cjson [email protected] | |
brew-extra: PKG_CONFIG_PATH="/usr/local/opt/[email protected]/lib/pkgconfig" | |
runner-ubuntu: ubuntu-20.04 | |
sonarcloud-skip: true | |
secrets: | |
sonar_login: ${{ secrets.SONAR_TOKEN }} | |
codecov_token: ${{ secrets.CODECOV_TOKEN }} | |
test-openssl-3_x: | |
uses: xmidt-org/.github/.github/workflows/meson-unit-test.yml@main | |
with: | |
# cjson & openssl | |
packages: libcjson-dev libssl-dev | |
brew-packages: cjson openssl@3 | |
macos-openssl-fix: true | |
sonarcloud-skip: true | |
secrets: | |
sonar_login: ${{ secrets.SONAR_TOKEN }} | |
codecov_token: ${{ secrets.CODECOV_TOKEN }} |