Skip to content

Commit

Permalink
Fix CI workflow for markdown file only changes (#4786)
Browse files Browse the repository at this point in the history
  • Loading branch information
utpilla authored Aug 18, 2023
1 parent 7d5722a commit 77b3a1e
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-instrumentation-libraries-md.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# Description: This workflow exists to unblock documentation-only PRs.

# IMPORTANT: This workflow MUST use the same 'name' as the non -md workflow.
# IMPORTANT: This workflow MUST use the same 'name' and 'matrix' as the non -md workflow.

name: Test instrumentation libraries

Expand Down
17 changes: 15 additions & 2 deletions .github/workflows/ci-md.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

# Description: This workflow exists to unblock documentation-only PRs.

# IMPORTANT: This workflow MUST use the same 'name' as the non -md workflow.
# IMPORTANT: This workflow MUST use the same 'name' and 'matrix' as the non -md workflow.

name: Build

Expand All @@ -14,7 +14,20 @@ on:
- '**.md'

jobs:
build-test:
build-test-stable:
strategy:
matrix:
os: [ windows-latest, ubuntu-latest ]
version: [ net462, net6.0, net7.0 ]
exclude:
- os: ubuntu-latest
version: net462

runs-on: ubuntu-latest
steps:
- run: 'echo "No build required"'

build-test-experimental:
strategy:
matrix:
os: [ windows-latest, ubuntu-latest ]
Expand Down

0 comments on commit 77b3a1e

Please sign in to comment.