Fix tests #9
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ALL release | |
on: [push, pull_request] | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Builder focal image setup | |
run: sudo docker build -t cl-repro-focal - < contrib/reprobuild/Dockerfile.focal | |
- name: Builder jammy image setup | |
run: sudo docker build -t cl-repro-jammy - < contrib/reprobuild/Dockerfile.jammy | |
- name: Builder noble image setup | |
run: sudo docker build -t cl-repro-noble - < contrib/reprobuild/Dockerfile.noble | |
- name: Building using the builder image | |
run: ./tools/build-release.sh bin-Fedora bin-Ubuntu | |
- name: Upload Artifact | |
uses: actions/upload-artifact@v4 | |
with: | |
name: clightning-${{ github.sha }}-all-releases | |
path: release/*.* | |
if-no-files-found: error | |
retention-days: 7 | |
- name: Download artifacts | |
uses: actions/download-artifact@v4 | |
with: | |
name: clightning-${{ github.sha }}-all-releases |