From c86b84a426600c242bdaf3397a180f29635efe3e Mon Sep 17 00:00:00 2001 From: Leonardo Lima Date: Wed, 25 Nov 2020 01:44:20 -0300 Subject: [PATCH 1/2] Implemented GitHub Actions support --- .github/workflows/build.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/build.yml diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml new file mode 100644 index 0000000..d802e9e --- /dev/null +++ b/.github/workflows/build.yml @@ -0,0 +1,24 @@ +name: Build + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - name: Checkout repository + uses: actions/checkout@v1 + + - name: cmake + run: cmake . + + - name: make + run: make -j4 From 3c430c5eaa5189769ff155db2153006389c3f889 Mon Sep 17 00:00:00 2001 From: Leonardo Lima Date: Wed, 25 Nov 2020 01:46:12 -0300 Subject: [PATCH 2/2] Implemented build status badge --- README.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/README.md b/README.md index fffc6d4..153fa73 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,8 @@ JniHelpers ========== +![Build](https://github.com/leozz37/JniHelpers/workflows/Build/badge.svg) + JniHelpers is a library designed to facilitate writing JNI code with C++. It provides the following features: