diff options
author | Lorenz Kästle <lorenz.kaestle@netways.de> | 2023-03-09 11:46:26 +0100 |
---|---|---|
committer | Lorenz Kästle <lorenz.kaestle@netways.de> | 2023-03-09 11:46:26 +0100 |
commit | e4ddeb7bb722b50613108da1cb51a48e84068701 (patch) | |
tree | 185f2715ee097171235fabe8c090f3358dd7356e /.github/workflows/c-cpp.yml | |
parent | 305d1529f8a6a221eddf558710b89d5697fae6bc (diff) | |
download | monitoring-plugins-e4ddeb7.tar.gz |
Add build pipeline as a precondition for full test
Diffstat (limited to '.github/workflows/c-cpp.yml')
-rw-r--r-- | .github/workflows/c-cpp.yml | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/.github/workflows/c-cpp.yml b/.github/workflows/c-cpp.yml deleted file mode 100644 index 6c8b63c8..00000000 --- a/.github/workflows/c-cpp.yml +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | name: C/C++ CI | ||
2 | |||
3 | on: | ||
4 | push: | ||
5 | branches: [ "master" ] | ||
6 | pull_request: | ||
7 | branches: [ "master" ] | ||
8 | |||
9 | jobs: | ||
10 | build: | ||
11 | |||
12 | runs-on: ubuntu-latest | ||
13 | |||
14 | steps: | ||
15 | - uses: actions/checkout@v3 | ||
16 | - name: Install gettext | ||
17 | run: sudo apt-get install gettext | ||
18 | - name: setup | ||
19 | run: ./tools/setup | ||
20 | - name: CFLAGS="-Wall -Wextra -std=c90" configure | ||
21 | run: ./configure | ||
22 | - name: make | ||
23 | run: make | ||