Skip to content

Commit

Permalink
TEST1
Browse files Browse the repository at this point in the history
  • Loading branch information
mikebeaton committed Nov 27, 2024
1 parent 31a5254 commit d22956f
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 16 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/analyze.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: CI Bootstrap
run: |
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/mikebeaton/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 {} +
Expand Down Expand Up @@ -76,7 +76,7 @@ jobs:
- name: Run prospector
run: |
/usr/bin/curl -L https://raw.githubusercontent.com/acidanthera/ocbuild/master/prospector/profile.yml -o profile.yml || exit 1
/usr/bin/curl -L https://raw.githubusercontent.com/mikebeaton/ocbuild/master/prospector/profile.yml -o profile.yml || exit 1
python3 -m prospector . -P ./profile.yml | tee prospector_result.txt || exit 1
- name: Upload prospector result to Artifacts
Expand Down Expand Up @@ -118,14 +118,14 @@ jobs:
- name: CI Bootstrap
run: |
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/mikebeaton/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 -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/coverity/covstrap-linux.sh) && eval "$src" || exit 1
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/mikebeaton/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 }}
Expand Down
12 changes: 6 additions & 6 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:

- name: CI Bootstrap
run: |
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/mikebeaton/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
- run: ./build_duet.tool
- run: ./build_oc.tool
Expand Down Expand Up @@ -64,7 +64,7 @@ jobs:

- name: Apply Docker AppArmor settings
run: |
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/docker-apparmor.sh) && eval "$src" || exit 1
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/mikebeaton/ocbuild/master/docker-apparmor.sh) && eval "$src" || exit 1
- name: Use Docker in rootless mode.
uses: ScribeMD/[email protected]
Expand All @@ -91,7 +91,7 @@ jobs:

- name: Apply Docker AppArmor settings
run: |
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/docker-apparmor.sh) && eval "$src" || exit 1
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/mikebeaton/ocbuild/master/docker-apparmor.sh) && eval "$src" || exit 1
- name: Use Docker in rootless mode.
uses: ScribeMD/[email protected]
Expand All @@ -118,7 +118,7 @@ jobs:

- name: Apply Docker AppArmor settings
run: |
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/docker-apparmor.sh) && eval "$src" || exit 1
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/mikebeaton/ocbuild/master/docker-apparmor.sh) && eval "$src" || exit 1
- name: Use Docker in rootless mode.
uses: ScribeMD/[email protected]
Expand All @@ -143,7 +143,7 @@ jobs:

- name: Apply Docker AppArmor settings
run: |
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/docker-apparmor.sh) && eval "$src" || exit 1
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/mikebeaton/ocbuild/master/docker-apparmor.sh) && eval "$src" || exit 1
- name: Use Docker in rootless mode.
uses: ScribeMD/[email protected]
Expand All @@ -169,7 +169,7 @@ jobs:
- name: CI Bootstrap
run: |
src=$(curl -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
src=$(curl -LfsS https://raw.githubusercontent.com/mikebeaton/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
- run: ./build_duet.tool
- run: ./build_oc.tool
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/uncrustify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,11 +25,11 @@ jobs:
- name: CI Bootstrap
run: |
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
src=$(/usr/bin/curl -LfsS https://raw.githubusercontent.com/mikebeaton/ocbuild/master/ci-bootstrap.sh) && eval "$src" || exit 1
- name: Run Uncrustify
run: |
python3 -c "$(/usr/bin/curl https://raw.githubusercontent.com/acidanthera/ocbuild/master/uncstrap/uncstrap.py)" ./Uncrustify.yml || exit 1
python3 -c "$(/usr/bin/curl https://raw.githubusercontent.com/mikebeaton/ocbuild/master/uncstrap/uncstrap.py)" ./Uncrustify.yml || exit 1
- name: Upload to Artifacts
uses: actions/upload-artifact@v4
Expand Down
2 changes: 1 addition & 1 deletion build_duet.tool
Original file line number Diff line number Diff line change
Expand Up @@ -198,5 +198,5 @@ else
export SELFPKG
export NO_ARCHIVES

src=$(curl -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/efibuild.sh) && eval "$src" || exit 1
src=$(curl -LfsS https://raw.githubusercontent.com/mikebeaton/ocbuild/master/efibuild.sh) && eval "$src" || exit 1
fi
2 changes: 1 addition & 1 deletion build_oc.tool
Original file line number Diff line number Diff line change
Expand Up @@ -384,7 +384,7 @@ export SELFPKG
export NO_ARCHIVES
export DISCARD_SUBMODULES

src=$(curl -LfsS https://raw.githubusercontent.com/acidanthera/ocbuild/master/efibuild.sh) && eval "$src" || exit 1
src=$(curl -LfsS https://raw.githubusercontent.com/mikebeaton/ocbuild/master/efibuild.sh) && eval "$src" || exit 1

cd Utilities/ocvalidate || exit 1
ocv_tool=""
Expand Down
4 changes: 2 additions & 2 deletions docker-compose.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -30,14 +30,14 @@ services:
entrypoint:
- /bin/bash
- -c
- "{ . ~/.edk2_rc.sh && eval \"$$(/usr/bin/curl -LfsS 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/mikebeaton/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 -LfsS 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/mikebeaton/ocbuild/master/ci-bootstrap.sh)\" && ./build_duet.tool ; } || exit 1"
build-docs:
extends:
service: dev-docs
Expand Down

0 comments on commit d22956f

Please sign in to comment.