Build on agx #3
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
env: | |
DEPS: build-essential meson git libglib2.0-dev libedit-dev | |
name: Build eigenvalue | |
run-name: Build on ${{ github.actor }} | |
on: [push] | |
jobs: | |
Build-gcc: | |
runs-on: ubuntu-24.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install deps | |
run: sudo apt -y install $DEPS | |
- name: setup | |
run: meson setup _build | |
- name: build | |
run: meson compile -C _build | |