ci: introduce in ci the compilation testing on different os

Changelog-None: introduce in ci the compilation testing on different os

Signed-off-by: Vincenzo Palazzo <vincenzopalazzodev@gmail.com>
This commit is contained in:
Vincenzo Palazzo
2022-01-04 16:39:46 +01:00
committed by Rusty Russell
parent d7ffb712e5
commit c0c826d2ee
7 changed files with 40 additions and 0 deletions

17
.github/workflows/ci_build.yml vendored Normal file
View File

@@ -0,0 +1,17 @@
name: CI Compilation testing
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- { OS: alpine }
steps:
- uses: actions/checkout@v2
- name: Integration testing
run: |
docker build -f contrib/docker/Dockerfile.${{matrix.OS}} -t clightning-${{matrix.OS}} .