Skip to content

Commit ed357bb

Browse files
committed
Use separate repo variable for up-rust file patterns
The workflows that run OpenFastTrace for checking coverage of requirements from up-spec have been adapted to use a separate repo variable that contains the file patterns for artifacts from up-rust that cover the requirements.
1 parent e161f9d commit ed357bb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.github/workflows/check-up-spec-compatibility.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ jobs:
5454
- name: Run OpenFastTrace
5555
uses: ./.github/actions/run-oft
5656
with:
57-
file-patterns: ${{ vars.UP_SPEC_OPEN_FAST_TRACE_FILE_PATTERNS }}
57+
file-patterns: "${{ vars.UP_SPEC_OPEN_FAST_TRACE_FILE_PATTERNS }} ${{ vars.UP_RUST_OPEN_FAST_TRACE_FILE_PATTERNS }}"
5858

5959
# now try to build and run the tests which may fail if incomaptible changes
6060
# have been introduced in up-spec

.github/workflows/nightly.yaml

+1-1
Original file line numberDiff line numberDiff line change
@@ -57,4 +57,4 @@ jobs:
5757
requirements-tracing:
5858
uses: ./.github/workflows/requirements-tracing.yaml
5959
with:
60-
oft-file-patterns: ${{ vars.UP_SPEC_OPEN_FAST_TRACE_FILE_PATTERNS }}
60+
oft-file-patterns: "${{ vars.UP_SPEC_OPEN_FAST_TRACE_FILE_PATTERNS }} ${{ vars.UP_RUST_OPEN_FAST_TRACE_FILE_PATTERNS }}"

0 commit comments

Comments
 (0)