Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

ci: test also cmake 3.10 #5

Merged
merged 1 commit into from
May 15, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 11 additions & 1 deletion .github/workflows/cmake.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,19 @@ jobs:
fail-fast: false
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]

cmake: [ '3.10.x', '3.13.x', '3.15.x', '3.17.x' ]
exclude:
- os: windows-latest
cmake: '3.10.x'
- os: windows-latest
cmake: '3.13.x'
steps:
- uses: actions/checkout@v2
- name: Setup cmake
uses: jwlawson/actions-setup-cmake@v1.0
with:
cmake-version: ${{ matrix.cmake }}
github-api-token: ${{ secrets.GITHUB_TOKEN }}
- name: dependencies
run: |
if [ "$RUNNER_OS" == "Linux" ]; then
Expand Down