Skip to content

Commit

Permalink
github: workflows: restricted x64 CI to relevant paths
Browse files Browse the repository at this point in the history
  • Loading branch information
vpirogov committed Dec 17, 2024
1 parent 272b599 commit c978168
Showing 1 changed file with 39 additions and 4 deletions.
43 changes: 39 additions & 4 deletions .github/automation/.azure-pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,5 +1,3 @@
#! /bin/bash

#===============================================================================
# Copyright 2019-2024 Intel Corporation
#
Expand All @@ -16,9 +14,46 @@
# limitations under the License.
#===============================================================================

# Reference:
# https://learn.microsoft.com/en-us/azure/devops/pipelines/yaml-schema

trigger:
- main
- rls-*
batch: true
branches:
include: [ main, rls-* ]
paths:
include:
- .github
- cmake
- examples
- include
- src
- tests
exclude:
- src/gpu
- src/cpu/aarch64
- src/cpu/ppc64
- src/cpu/rv64
- src/cpu/s390x

pr:
autoCancel: true
branches:
include: [ main, rls-* ]
paths:
include:
- .github
- cmake
- examples
- include
- src
- tests
exclude:
- src/gpu
- src/cpu/aarch64
- src/cpu/ppc64
- src/cpu/rv64
- src/cpu/s390x

jobs:
- job: 'Ubuntu20'
Expand Down

0 comments on commit c978168

Please sign in to comment.