From a7086902c80dfc0a5c7f621b0659feebf373f44d Mon Sep 17 00:00:00 2001 From: Christian Decker Date: Tue, 27 Feb 2024 13:17:02 +0100 Subject: [PATCH] ci: Remove the alping compilation test This workflow has never had a particularly good signal-to-noise ratio, and disabling it saves us a couple of GH Actions cycles, with only minor reduction in test reach. We should rather rethink this and use the installation instructions to write Dockerfiles for each described architecture, and then have the CI test-build those Dockerfiles. That would also cover the docs during testing, rather than having yet another place where the instructions can bitrot away. Changelog-None No user-visible change. --- .github/workflows/ci_build.yml | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 .github/workflows/ci_build.yml diff --git a/.github/workflows/ci_build.yml b/.github/workflows/ci_build.yml deleted file mode 100644 index 71e51cabb..000000000 --- a/.github/workflows/ci_build.yml +++ /dev/null @@ -1,18 +0,0 @@ -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 } - steps: - - uses: actions/checkout@v2 - - name: Integration testing - run: | - docker build -f contrib/docker/Dockerfile.${{matrix.OS}} -t clightning-${{matrix.OS}} .