aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.github/workflows/build.yaml18
1 files changed, 0 insertions, 18 deletions
diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml
deleted file mode 100644
index 803bc4f..0000000
--- a/.github/workflows/build.yaml
+++ /dev/null
@@ -1,18 +0,0 @@
-name: build
-on: [push]
-jobs:
- build:
- runs-on: ubuntu-latest
- steps:
- - uses: actions/checkout@v2
- - name: install dependencies
- run: |
- PKGS=""
- PKGS="$PKGS meson ninja-build"
- PKGS="$PKGS libgtk-3-dev libvte-2.91-dev"
- PKGS="$PKGS libxml2-dev libvirt-dev"
- sudo apt-get install $PKGS
- - name: contigure (meson)
- run: meson build-test
- - name: compile (ninja)
- run: ninja -C build-test