Skip to content

Commit bb7ad46

Browse files
committed
Exclude Swift on macos for version 2.14.6
1 parent 34919cb commit bb7ad46

File tree

2 files changed

+8
-4
lines changed

2 files changed

+8
-4
lines changed

.github/workflows/__multi-language-autodetect.yml

Lines changed: 4 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

pr-checks/checks/multi-language-autodetect.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,8 @@ steps:
1515
tools: ${{ steps.prepare-test.outputs.tools-url }}
1616

1717
- uses: ./../action/.github/actions/setup-swift
18-
if: runner.os == 'macOS'
18+
# Exclude macos on v2.14.6 since we can not longer run swift on ARM runners
19+
if: runner.os == 'macOS' && matrix.version != 'stable-v2.14.6'
1920
with:
2021
codeql-path: ${{ steps.init.outputs.codeql-path }}
2122

@@ -68,7 +69,8 @@ steps:
6869
fi
6970
7071
- name: Check language autodetect for Swift on macOS
71-
if: runner.os == 'macOS'
72+
# Exclude macos on v2.14.6 since we can not longer run swift on ARM runners
73+
if: runner.os == 'macOS' && matrix.version != 'stable-v2.14.6'
7274
shell: bash
7375
run: |
7476
SWIFT_DB=${{ fromJson(steps.analysis.outputs.db-locations).swift }}

0 commit comments

Comments
 (0)