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 aeef152
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
8 changes: 4 additions & 4 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://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
Expand Down Expand Up @@ -57,7 +57,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 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")" = "" ]
Expand All @@ -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 }}
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://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}!"
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://raw.githubusercontent.com/acidanthera/ocbuild/master/coverity/"
COV_TOOLS_URL="https://raw.githubusercontent.com/mikebeaton/ocbuild/master/coverity/"
COV_TOOLS=(
"cov-cc"
"cov-cxx"
Expand Down

0 comments on commit aeef152

Please sign in to comment.