Skip to content
name: CI Docker Release
on: [push, pull_request]
jobs:
bionic:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Builder image setup
run: sudo docker build -t cl-repro-bionic - < contrib/reprobuild/Dockerfile.bionic
- name: Building using the builder image
run: ./tools/build-release.sh bin-Fedora-28-amd64 bin-Ubuntu
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: clightning-${{ github.sha }}-Ubuntu-18.04
path: release/*.*
if-no-files-found: error
retention-days: 7
- name: Download artifacts
uses: actions/download-artifact@v3
with:
name: clightning-${{ github.sha }}-Ubuntu-18.04
focal:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Builder image setup
run: sudo docker build -t cl-repro-focal - < contrib/reprobuild/Dockerfile.focal
- name: Building using the builder image
run: ./tools/build-release.sh bin-Fedora-28-amd64 bin-Ubuntu
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: clightning-${{ github.sha }}-Ubuntu-20.04
path: release/*.*
if-no-files-found: error
retention-days: 7
- name: Download artifacts
uses: actions/download-artifact@v3
with:
name: clightning-${{ github.sha }}-Ubuntu-20.04
jammy:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Builder image setup
run: sudo docker build -t cl-repro-jammy - < contrib/reprobuild/Dockerfile.jammy
- name: Building using the builder image
run: ./tools/build-release.sh bin-Fedora-28-amd64 bin-Ubuntu
- name: Upload Artifact
uses: actions/upload-artifact@v3
with:
name: clightning-${{ github.sha }}-Ubuntu-22.04
path: release/*.*
if-no-files-found: error
retention-days: 7
- name: Download artifacts
uses: actions/download-artifact@v3
with:
name: clightning-${{ github.sha }}-Ubuntu-22.04