From 944eaf000243fbeac0721ff7afb28b4c709bd86f Mon Sep 17 00:00:00 2001 From: Andy Grover Date: Wed, 14 Oct 2020 00:23:50 -0700 Subject: [PATCH] scoutfs-utils: Add CI Do a basic build using a GitHub Action. Signed-off-by: Andy Grover --- .github/workflows/c-cpp.yml | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) create mode 100644 .github/workflows/c-cpp.yml diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml new file mode 100644 index 0000000..fb2342f --- /dev/null +++ b/.github/workflows/c-cpp.yml @@ -0,0 +1,21 @@ +name: Build Utils + +on: + push: + branches: [ master ] + pull_request: + branches: [ master ] + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: updaterepos + run: sudo apt-get update + - name: installdeps + run: sudo apt-get install uuid-dev libssl-dev + - name: make + run: make