CERTS should do the base case first #2461
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: Formal Ledger Specs | |
on: | |
push: | |
branches: | |
- master | |
pull_request: | |
branches: | |
- master | |
permissions: | |
contents: write | |
env: | |
MAlonzo_branch: ${{ github.event.pull_request.head.ref }}-MAlonzo | |
jobs: | |
MAlonzo: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
ref: MAlonzo-code | |
- name: Create branch ${{ env.MAlonzo_branch }} for generated code | |
if: github.event_name == 'pull_request' && github.event.action == 'opened' | |
run: | | |
git checkout -b ${{ env.MAlonzo_branch }} origin/MAlonzo-code | |
git push origin ${{ env.MAlonzo_branch }} | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v20 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
extra_nix_config: | | |
trusted-public-keys = hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= | |
substituters = https://cache.iog.io https://cache.nixos.org/ | |
- name: Commit generated code at ${{ env.MAlonzo_branch }} | |
if: github.ref != 'refs/heads/master' | |
run: | | |
nix-build -A ledger.hsSrc -j1 -o outputs/MAlonzo | |
git config user.name 'github-actions[bot]' | |
git config user.email 'github-actions[bot]@users.noreply.github.com' | |
git stash push | |
git fetch origin ${{ env.MAlonzo_branch }} --unshallow | |
git checkout ${{ env.MAlonzo_branch }} | |
rsync -r --exclude={'**/nix-support','**/lib'} outputs/MAlonzo/haskell/Ledger/* generated/ | |
git add -f generated && git commit -m "Generate code for ${{ github.sha }}" || echo "Everything is up-to-date." | |
- name: Push ${{ env.MAlonzo_branch }} | |
if: github.ref != 'refs/heads/master' | |
uses: ad-m/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: ${{ env.MAlonzo_branch }} | |
force: false | |
directory: . | |
Formal-Ledger: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v20 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
extra_nix_config: | | |
trusted-public-keys = hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= | |
substituters = https://cache.iog.io https://cache.nixos.org/ | |
- name: Build formalLedger | |
id: formalLedger | |
run: | | |
nix-build -A formalLedger -j1 -o outputs/formalLedger | |
rsync -r --include={'**/*.time'} outputs/formalLedger*/* docs/ | |
- name: Upload docs | |
if: github.ref == 'refs/heads/master' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Docs-formalLedger | |
path: docs | |
- name: Upload typechecking times | |
if: github.event_name == 'pull_request' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Typechecking durations - FormalLedger | |
path: docs/*.time | |
Ledger-hs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v20 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
extra_nix_config: | | |
trusted-public-keys = hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= | |
substituters = https://cache.iog.io https://cache.nixos.org/ | |
- name: Build ledger | |
id: ledger-hs | |
run: | | |
nix-build -A ledger.hsSrc -j1 -o outputs/ledger | |
rsync -r --exclude={'**/nix-support','**/lib'} outputs/ledger*/* docs/ | |
- name: Upload docs | |
if: github.ref == 'refs/heads/master' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Docs-ledger-hs | |
path: docs | |
Ledger-pdf: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v20 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
extra_nix_config: | | |
trusted-public-keys = hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= | |
substituters = https://cache.iog.io https://cache.nixos.org/ | |
- name: Build ledger | |
id: ledger-pdf | |
run: | | |
echo -n html docs conway | xargs -d' ' -I{} nix-build -A ledger.{} -j1 -o outputs/ledger-{} | |
rsync -r --exclude={'**/nix-support','**/lib'} outputs/ledger*/* docs/ | |
- name: Upload docs | |
if: github.ref == 'refs/heads/master' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Docs-ledger-pdf | |
path: docs | |
- name: Upload PDF artifacts | |
if: github.event_name == 'pull_request' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: PDF specs - Ledger | |
path: docs/pdfs/*.pdf | |
Midnight: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: cachix/install-nix-action@v20 | |
with: | |
nix_path: nixpkgs=channel:nixos-unstable | |
extra_nix_config: | | |
trusted-public-keys = hydra.iohk.io:f/Ea+s+dFdN+3Y/G+FDgSq+a5NEWhJGzdjvKNGv0/EQ= cache.nixos.org-1:6NCHdD59X431o0gWypbMrAURkbJ16ZPMQFGspcDShjY= | |
substituters = https://cache.iog.io https://cache.nixos.org/ | |
- name: Build midnight | |
id: midnight | |
run: | | |
nix-build -A midnight -j1 -o outputs/midnight | |
rsync -r --exclude={'**/nix-support','**/lib'} outputs/midnight*/* docs/ | |
- name: Upload docs | |
if: github.ref == 'refs/heads/master' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Docs-midnight | |
path: docs | |
- name: Upload PDF artifacts | |
if: github.event_name == 'pull_request' | |
uses: actions/upload-artifact@v4 | |
with: | |
name: PDF specs - Midnight | |
path: docs/pdfs/*.pdf | |
Uploads: | |
needs: [Formal-Ledger, Ledger-hs, Ledger-pdf, Midnight] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Download docs | |
if: github.ref == 'refs/heads/master' | |
uses: actions/download-artifact@v4 | |
with: | |
pattern: Docs-* | |
path: docs | |
merge-multiple: true | |
- name: Generate main website | |
if: github.ref == 'refs/heads/master' | |
run: | | |
echo "** Generated PDF files:"; find -L docs/ -name '*.pdf' | |
echo "** Generated HTML files:"; find -L docs/ -name '*.html' | |
echo "** Generated Haskell files:"; find -L docs/ -name '*.hs' | |
OUT_DIR=../docs/ make staticWebsite | |
- name: Add files | |
if: github.ref == 'refs/heads/master' | |
run: | | |
git config user.name 'github-actions[bot]' | |
git config user.email 'github-actions[bot]@users.noreply.github.com' | |
git add -f docs/ | |
git commit -m "Updated for ${{ github.sha }}" | |
- name: Push to gh-pages | |
if: github.ref == 'refs/heads/master' | |
uses: ad-m/[email protected] | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
branch: gh-pages | |
force: true | |
directory: . |