mirror of
https://github.com/acidanthera/OpenCorePkg.git
synced 2025-12-08 19:25:01 +00:00
Build: Switch workflows from macos-latest to macos-13 (#481)
This commit is contained in:
parent
d74d43bb02
commit
8a360fef5e
6
.github/workflows/analyze.yml
vendored
6
.github/workflows/analyze.yml
vendored
@ -28,7 +28,7 @@ jobs:
|
||||
|
||||
- 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 -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
|
||||
|
||||
- name: Run shellcheck
|
||||
run: find . \( -name "*.tool" -o -name "*.command" -o -name "*.sh" \) -exec sh -c 'for TargetFile; do shellcheck --severity=info "${TargetFile}" || exit 1; done' sh {} +
|
||||
@ -115,14 +115,14 @@ jobs:
|
||||
|
||||
- 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 -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
|
||||
|
||||
- run: ./build_oc.tool --skip-build --skip-package
|
||||
|
||||
- name: Run Coverity
|
||||
working-directory: UDK
|
||||
run: |
|
||||
src=$(/usr/bin/curl -Lfs https://raw.githubusercontent.com/acidanthera/ocbuild/master/coverity/covstrap-linux.sh) && eval "$src" || exit 1
|
||||
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/coverity/covstrap-linux.sh) && eval "$src" || exit 1
|
||||
env:
|
||||
COVERITY_SCAN_TOKEN: ${{ secrets.COVERITY_SCAN_TOKEN }}
|
||||
COVERITY_SCAN_EMAIL: ${{ secrets.COVERITY_SCAN_EMAIL }}
|
||||
|
||||
6
.github/workflows/build.yml
vendored
6
.github/workflows/build.yml
vendored
@ -17,7 +17,7 @@ env:
|
||||
jobs:
|
||||
build-macos:
|
||||
name: macOS XCODE5
|
||||
runs-on: macos-latest
|
||||
runs-on: macos-13
|
||||
env:
|
||||
JOB_TYPE: BUILD
|
||||
steps:
|
||||
@ -40,7 +40,7 @@ jobs:
|
||||
|
||||
- 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 -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
|
||||
|
||||
- run: ./build_duet.tool
|
||||
- run: ./build_oc.tool
|
||||
@ -164,7 +164,7 @@ jobs:
|
||||
|
||||
- name: CI Bootstrap
|
||||
run: |
|
||||
src=$(curl -Lfs https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
|
||||
src=$(curl -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
|
||||
|
||||
- run: ./build_duet.tool
|
||||
- run: ./build_oc.tool
|
||||
|
||||
2
.github/workflows/uncrustify.yml
vendored
2
.github/workflows/uncrustify.yml
vendored
@ -25,7 +25,7 @@ jobs:
|
||||
|
||||
- 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 -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
|
||||
|
||||
- name: Run Uncrustify
|
||||
run: |
|
||||
|
||||
@ -192,5 +192,5 @@ else
|
||||
export SELFPKG
|
||||
export NO_ARCHIVES
|
||||
|
||||
src=$(curl -Lfs https://raw.githubusercontent.com/acidanthera/ocbuild/master/efibuild.sh) && eval "$src" || exit 1
|
||||
src=$(curl -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/efibuild.sh) && eval "$src" || exit 1
|
||||
fi
|
||||
|
||||
@ -382,7 +382,7 @@ export SELFPKG
|
||||
export NO_ARCHIVES
|
||||
export DISCARD_PACKAGES
|
||||
|
||||
src=$(curl -Lfs https://raw.githubusercontent.com/acidanthera/ocbuild/master/efibuild.sh) && eval "$src" || exit 1
|
||||
src=$(curl -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/efibuild.sh) && eval "$src" || exit 1
|
||||
|
||||
cd Utilities/ocvalidate || exit 1
|
||||
ocv_tool=""
|
||||
|
||||
@ -30,14 +30,14 @@ services:
|
||||
entrypoint:
|
||||
- /bin/bash
|
||||
- -c
|
||||
- "{ . ~/.edk2_rc.sh && eval \"$$(/usr/bin/curl -Lfs https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh)\" && ./build_oc.tool ; } || exit 1"
|
||||
- "{ . ~/.edk2_rc.sh && eval \"$$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh)\" && ./build_oc.tool ; } || exit 1"
|
||||
build-duet:
|
||||
extends:
|
||||
service: dev-edk2
|
||||
entrypoint:
|
||||
- /bin/bash
|
||||
- -c
|
||||
- "{ . ~/.edk2_rc.sh && eval \"$$(/usr/bin/curl -Lfs https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh)\" && ./build_duet.tool ; } || exit 1"
|
||||
- "{ . ~/.edk2_rc.sh && eval \"$$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh)\" && ./build_duet.tool ; } || exit 1"
|
||||
build-docs:
|
||||
extends:
|
||||
service: dev-docs
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user