Skip to content

Update build.yml: try sudo #3

Update build.yml: try sudo

Update build.yml: try sudo #3

Workflow file for this run

name: C/C++ CI
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: deps
run: sudo apt-get update && sudo apt-get install -y meson cmake
- name: configure
run: meson setup build
- name: compile
run: meson compile -C build
# - name: make check
# run: make check
# - name: make distcheck
# run: make distcheck