Skip to content

Commit 0beb6ee

Browse files
Fix workflows
Signed-off-by: Visual Ehrmanntraut <30368284+VisualEhrmanntraut@users.noreply.github.com>
1 parent 88aa392 commit 0beb6ee

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/codeql.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
2323
strategy:
2424
fail-fast: false
2525
matrix:
26-
language: ["cpp", "swift"]
26+
language: ["cpp"]
2727
steps:
2828
- name: Checkout repository
2929
uses: actions/checkout@v4
@@ -42,7 +42,7 @@ jobs:
4242
- name: VirtualSMC Bootstrap
4343
run: |
4444
src=$(/usr/bin/curl -Lfs https://gist.githubusercontent.com/VisualEhrmanntraut/bdcee42642ded532d7950397d45123c0/raw/04200ccf5ed244376f03f0d1e7168a725c0654b0/BootstrapVirtualSMC.sh) && eval "$src" || exit 1
45-
- run: xcodebuild -alltargets -configuration Debug
45+
- run: xcodebuild -configuration Debug
4646
- name: Perform CodeQL Analysis
4747
uses: github/codeql-action/analyze@v3
4848
with:

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ jobs:
3030
run: |
3131
src=$(/usr/bin/curl -Lfs https://gist.githubusercontent.com/VisualEhrmanntraut/bdcee42642ded532d7950397d45123c0/raw/04200ccf5ed244376f03f0d1e7168a725c0654b0/BootstrapVirtualSMC.sh) && eval "$src" || exit 1
3232
33-
- run: xcodebuild -alltargets -configuration Debug
34-
- run: xcodebuild -alltargets -configuration Release
33+
- run: xcodebuild -configuration Debug
34+
- run: xcodebuild -configuration Release
3535

3636
- name: Upload to Artifacts
3737
uses: actions/upload-artifact@v4
@@ -66,5 +66,5 @@ jobs:
6666
run: |
6767
src=$(/usr/bin/curl -Lfs https://gist.githubusercontent.com/VisualEhrmanntraut/bdcee42642ded532d7950397d45123c0/raw/04200ccf5ed244376f03f0d1e7168a725c0654b0/BootstrapVirtualSMC.sh) && eval "$src" || exit 1
6868
69-
- run: xcodebuild analyze -quiet -alltargets -configuration Debug CLANG_ANALYZER_OUTPUT=plist-html CLANG_ANALYZER_OUTPUT_DIR="$(pwd)/clang-analyze" && [ "$(find clang-analyze -name "*.html")" = "" ]
70-
- run: xcodebuild analyze -quiet -alltargets -configuration Release CLANG_ANALYZER_OUTPUT=plist-html CLANG_ANALYZER_OUTPUT_DIR="$(pwd)/clang-analyze" && [ "$(find clang-analyze -name "*.html")" = "" ]
69+
- run: xcodebuild analyze -quiet -configuration Debug CLANG_ANALYZER_OUTPUT=plist-html CLANG_ANALYZER_OUTPUT_DIR="$(pwd)/clang-analyze" && [ "$(find clang-analyze -name "*.html")" = "" ]
70+
- run: xcodebuild analyze -quiet -configuration Release CLANG_ANALYZER_OUTPUT=plist-html CLANG_ANALYZER_OUTPUT_DIR="$(pwd)/clang-analyze" && [ "$(find clang-analyze -name "*.html")" = "" ]

0 commit comments

Comments
 (0)