core-lightning/.github/workflows/ci_build.yml
Vincenzo Palazzo 8b30c34d48 ci: add the pre-build check as dependencies on lnprototetest
Signed-off-by: Vincenzo Palazzo <vincenzopalazzodev@gmail.com>
2023-06-14 13:21:48 +02:00

24 lines
541 B
YAML

name: CI Compilation testing
on:
workflow_run:
workflows: [Pre-Builds Checks]
types:
- completed
jobs:
test:
runs-on: ubuntu-latest
if: ${{ github.event.workflow_run.conclusion == 'success' }}
timeout-minutes: 120
strategy:
fail-fast: false
matrix:
include:
- { OS: alpine }
on:
steps:
- uses: actions/checkout@v2
- name: Integration testing
run: |
docker build -f contrib/docker/Dockerfile.${{matrix.OS}} -t clightning-${{matrix.OS}} .