Skip to content

Commit

Permalink
Don't expect Swift baseline info on Windows
Browse files Browse the repository at this point in the history
  • Loading branch information
henrymercer committed Apr 5, 2023
1 parent 5da64f5 commit 2058418
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/__export-file-baseline-information.yml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 4 additions & 1 deletion pr-checks/checks/export-file-baseline-information.yml
Expand Up @@ -30,7 +30,10 @@ steps:
shell: bash
run: |
cd "$RUNNER_TEMP/results"
expected_baseline_languages="cpp cs go java js py rb swift"
expected_baseline_languages="cpp cs go java js py rb"
if [[ $RUNNER_OS != "Windows" ]]; then
expected_baseline_languages+=" swift"
fi
for lang in ${expected_baseline_languages}; do
rule_name="${lang}/baseline/expected-extracted-files"
Expand Down

0 comments on commit 2058418

Please sign in to comment.