Rework ptr access to avoid false array-index-out-of-bounds errors (5) #529
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: Build | |
on: | |
push: | |
branches: [ "dev" ] | |
pull_request: | |
branches: [ "dev" ] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install Ubuntu Prerequisites | |
run: | | |
sudo apt-get update || true | |
sudo apt-get install build-essential libnuma-dev | |
- name: Build | |
run: cd userland; make |