From ce94a948fbf6fb57f31eb8395566f916d89bf89c Mon Sep 17 00:00:00 2001 From: Ilya Shipitsin Date: Wed, 30 Dec 2020 15:25:25 +0500 Subject: [PATCH] CI: github actions: build several popular "contrib" tools this adds "halog", "flags" and "poll" builds. builds are done in separate steps for better failure identification --- .github/workflows/contrib.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/contrib.yml diff --git a/.github/workflows/contrib.yml b/.github/workflows/contrib.yml new file mode 100644 index 000000000..39556e123 --- /dev/null +++ b/.github/workflows/contrib.yml @@ -0,0 +1,24 @@ +name: Contrib + +on: + push: + +jobs: + build: + + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Compile contrib/halog/halog + run: | + make contrib/halog/halog + - name: Compile contrib/debug/flags + run: | + make contrib/debug/flags + - name: Compile contrib/debug/poll + run: | + make contrib/debug/poll + - name: Compile contrib/hpack + run: | + make -C contrib/hpack