From ae92a3df2da0786abb53eb86d47d75c3f685b127 Mon Sep 17 00:00:00 2001 From: Kai Hudalla Date: Fri, 23 Aug 2024 08:48:59 +0200 Subject: [PATCH] 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. --- .github/workflows/check-up-spec-compatibility.yaml | 2 +- .github/workflows/nightly.yaml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/check-up-spec-compatibility.yaml b/.github/workflows/check-up-spec-compatibility.yaml index f17b0f9..c720ba6 100644 --- a/.github/workflows/check-up-spec-compatibility.yaml +++ b/.github/workflows/check-up-spec-compatibility.yaml @@ -54,7 +54,7 @@ jobs: - name: Run OpenFastTrace uses: ./.github/actions/run-oft with: - file-patterns: ${{ vars.UP_SPEC_OPEN_FAST_TRACE_FILE_PATTERNS }} + file-patterns: "${{ vars.UP_SPEC_OPEN_FAST_TRACE_FILE_PATTERNS }} ${{ vars.UP_RUST_OPEN_FAST_TRACE_FILE_PATTERNS }}" # now try to build and run the tests which may fail if incomaptible changes # have been introduced in up-spec diff --git a/.github/workflows/nightly.yaml b/.github/workflows/nightly.yaml index 8c96621..6725aeb 100644 --- a/.github/workflows/nightly.yaml +++ b/.github/workflows/nightly.yaml @@ -57,4 +57,4 @@ jobs: requirements-tracing: uses: ./.github/workflows/requirements-tracing.yaml with: - oft-file-patterns: ${{ vars.UP_SPEC_OPEN_FAST_TRACE_FILE_PATTERNS }} + oft-file-patterns: "${{ vars.UP_SPEC_OPEN_FAST_TRACE_FILE_PATTERNS }} ${{ vars.UP_RUST_OPEN_FAST_TRACE_FILE_PATTERNS }}"