summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjirka-h <hladky.jiri@gmail.com>2020-06-11 13:35:51 +0200
committerGitHub <noreply@github.com>2020-06-11 13:35:51 +0200
commitb839803c7f50416fba7c262736355cfc6e03c035 (patch)
treec20cec40bff6df4ae9897a1f57e4758a1264a17d
parentReplace @SBIN_DIR@ in haveged.service file with actual path (diff)
parentAdd GitHub Actions continuous integration script (diff)
downloadhaveged-b839803c7f50416fba7c262736355cfc6e03c035.tar.xz
haveged-b839803c7f50416fba7c262736355cfc6e03c035.zip
Merge pull request #34 from Chocobo1/gh_action
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