Files
lightning/.github/workflows/ci_build.yml
Vincenzo Palazzo 2bf3db623a Revert "ci: add the pre-build check as dependencies on lnprototetest"
This reverts commit 00d9f28a85982ae3d1b74b795ee356381dcb8d54.
2023-06-14 15:01:53 +02:00

24 lines
512 B
YAML

name: CI Compilation testing
on: [push, pull_request]
jobs:
test:
runs-on: ubuntu-latest
timeout-minutes: 120
strategy:
fail-fast: false
matrix:
include:
- { OS: alpine }
on:
workflow_run:
workflows: [Pre-build checks]
types:
- completed
steps:
- uses: actions/checkout@v2
- name: Integration testing
run: |
docker build -f contrib/docker/Dockerfile.${{matrix.OS}} -t clightning-${{matrix.OS}} .