Skip to content

Commit

Permalink
ci: Add build workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
agx committed Jul 29, 2024
1 parent e383735 commit 06d3b72
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
env:
DEPS: build-essential meson git libglib 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

0 comments on commit 06d3b72

Please sign in to comment.