summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Tzou <Chocobo1@users.noreply.github.com>2020-06-09 20:49:58 +0200
committerChocobo1 <Chocobo1@users.noreply.github.com>2020-06-09 21:40:22 +0200
commit7cd68e16c7857ae267704c363c4b0d289103e470 (patch)
tree6b77136a4e785df6569de719e5369649b965816e
parentFixed time format (diff)
downloadhaveged-7cd68e16c7857ae267704c363c4b0d289103e470.tar.xz
haveged-7cd68e16c7857ae267704c363c4b0d289103e470.zip
Add GitHub Actions continuous integration script
-rw-r--r--.github/workflows/ci.yaml19
1 files changed, 19 insertions, 0 deletions
diff --git a/.github/workflows/ci.yaml b/.github/workflows/ci.yaml
new file mode 100644
index 0000000..42ee8ce
--- /dev/null
+++ b/.github/workflows/ci.yaml
@@ -0,0 +1,19 @@
+name: Continuous Integration
+
+on: [push, pull_request]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+ steps:
+ - uses: actions/checkout@v2
+ - name: reconfigure
+ run: autoreconf -fi
+ - name: configure
+ run: ./configure --prefix="/usr"
+ - name: make
+ run: make
+ - name: make check
+ run: make check
+ - name: make install
+ run: sudo make install