From a9bdc55e0c032ae9718f21dbed720c7b700b886a Mon Sep 17 00:00:00 2001 From: Mike Beaton Date: Sun, 24 Nov 2024 14:26:06 +0000 Subject: [PATCH] TEST --- .github/workflows/main.yml | 10 +++++----- Lilu/Scripts/bootstrap.sh | 2 +- Lilu/Scripts/covstrap.sh | 2 +- 3 files changed, 7 insertions(+), 7 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 45bb75c2..5caec2cd 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,7 +25,7 @@ jobs: path: MacKernelSDK - name: CI Bootstrap run: | - src=$(/usr/bin/curl -Lfs https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1 + src=$(/usr/bin/curl -Lfs https://raw.githubusercontent.com/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 @@ -57,14 +57,14 @@ jobs: path: MacKernelSDK - name: CI Bootstrap run: | - src=$(/usr/bin/curl -Lfs https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1 + src=$(/usr/bin/curl -Lfs https://raw.githubusercontent.com/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' @@ -76,11 +76,11 @@ jobs: path: MacKernelSDK - name: CI Bootstrap run: | - src=$(/usr/bin/curl -Lfs https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1 + src=$(/usr/bin/curl -Lfs https://raw.githubusercontent.com/mikebeaton/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1 - name: Run Coverity run: | - src=$(/usr/bin/curl -Lfs https://raw.githubusercontent.com/acidanthera/ocbuild/master/coverity/covstrap.sh) && eval "$src" || exit 1 + src=$(/usr/bin/curl -Lfs https://raw.githubusercontent.com/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 }} diff --git a/Lilu/Scripts/bootstrap.sh b/Lilu/Scripts/bootstrap.sh index 000ecba5..55411b61 100755 --- a/Lilu/Scripts/bootstrap.sh +++ b/Lilu/Scripts/bootstrap.sh @@ -238,7 +238,7 @@ install_compiled_sdk() { if [ -n "${ACID32}" ]; then echo "-> ACID32 specified, installing clang32..." - src=$("${CURL}" -Lfs https://raw.githubusercontent.com/acidanthera/ocbuild/master/clang32-bootstrap.sh) && eval "$src" || ret=$? + src=$("${CURL}" -Lfs https://raw.githubusercontent.com/mikebeaton/ocbuild/master/clang32-bootstrap.sh) && eval "$src" || ret=$? if [ $ret -ne 0 ]; then echo "ERROR: Failed to install clang32 with code ${ret}!" diff --git a/Lilu/Scripts/covstrap.sh b/Lilu/Scripts/covstrap.sh index 4b5e8e9c..cbdd93d1 100644 --- a/Lilu/Scripts/covstrap.sh +++ b/Lilu/Scripts/covstrap.sh @@ -45,7 +45,7 @@ for tool in "${TOOLS[@]}"; do done # Coverity compatibility tools -COV_TOOLS_URL="https://raw.githubusercontent.com/acidanthera/ocbuild/master/coverity/" +COV_TOOLS_URL="https://raw.githubusercontent.com/mikebeaton/ocbuild/master/coverity/" COV_TOOLS=( "cov-cc" "cov-cxx"