OpenCorePkg/.github/workflows/uncrustify.yml
Savva Mitrofanov 7de33ca6a9 Build: Switch workflows from ubuntu-latest to 22.04
The image tag 'latest' still refers to 20.04 version. The problem is
outdated nasm binary which breaks build with recent changes from
202211 stable branch
2022-12-09 14:42:45 +06:00

40 lines
997 B
YAML

name: Uncrustify
on:
push:
pull_request:
workflow_dispatch:
release:
types: [published]
env:
PROJECT_TYPE: UEFI
jobs:
analyze-uncrustify:
name: Check Codestyle
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: |
sudo apt-get update
sudo apt-get install curl git
sudo python3 -m pip install gitpython requests pyyaml
- name: CI Bootstrap
run: |
src=$(/usr/bin/curl -Lfs https://raw.githubusercontent.com/acidanthera/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
- name: Upload to Artifacts
uses: actions/upload-artifact@v3
if: failure()
with:
name: Uncrustify Artifacts
path: ./uncrustify.diff