Frame Allocator can create duplicate free regions during initialization #1894
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: Clippy Checks | |
on: | |
pull_request: | |
types: [synchronize, opened, reopened] | |
jobs: | |
run-clippy: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: "Initialize git submodules" | |
run: | | |
git submodule update --init --recursive | |
- name: "Install nasm" | |
run: | | |
sudo apt update | |
sudo apt install nasm | |
- name: "Run Clippy" | |
working-directory: . | |
run: | | |
make clippy ARCH=x86_64 | |
make clippy ARCH=aarch64 |