Remove video from residency and allocator APIs. #1438
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Clang format check" | |
permissions: read-all | |
on: | |
push: | |
branches: main | |
paths: | |
- 'src/**' | |
pull_request: | |
branches: main | |
paths: | |
- 'src/**' | |
jobs: | |
job: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Git config | |
run: | | |
git config --global core.autocrlf false | |
git config --global core.eol lf | |
- uses: actions/checkout@v2 | |
with: | |
fetch-depth: 0 | |
- name: Install depot_tools | |
run: git clone https://chromium.googlesource.com/chromium/tools/depot_tools.git ../depot_tools | |
- name: Sync code | |
run: | | |
export PATH=${PWD}/../depot_tools:${PATH} | |
cp scripts/standalone.gclient .gclient | |
gclient sync | |
- name: Run clang format check | |
run: | | |
export PATH=${PWD}/../depot_tools:${PATH} | |
bash scripts/clang_format_check.sh |