Skip to content

ci: consistent AppVeyor job config for pvData/pvAccess #97

New issue

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

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

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Dec 25, 2024
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
13 changes: 10 additions & 3 deletions .appveyor.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
# .appveyor.yml for use with EPICS Base ci-scripts
# (see: https://github.com/epics-base/ci-scripts)

# This is YAML - indentation levels are crucial

cache:
- C:\Users\appveyor\.tools

Expand All @@ -12,13 +14,15 @@ init:
# Set autocrlf to make batch files work
- git config --global core.autocrlf true

clone_depth: 50
clone_depth: 5

# Skipping commits affecting only specific files
skip_commits:
files:
- 'documentation/*'
- '**/*.md'
- 'documentation/*'
- '.github/*'
- '**/*.md'
- '.readthedocs.yml'

# Build Configurations: dll/static, regular/debug
configuration:
Expand All @@ -36,6 +40,9 @@ environment:
matrix:
- CMP: vs2019
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
- CMP: vs2019
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2019
BASE: 3.15
- CMP: vs2017
APPVEYOR_BUILD_WORKER_IMAGE: Visual Studio 2017
- CMP: vs2015
Expand Down
Loading