Skip to content

New approach to the weekly CI #2

New approach to the weekly CI

New approach to the weekly CI #2

Workflow file for this run

on:
push:
workflow_dispatch:
jobs:
hax:
runs-on: [self-hosted, linux, nix]
steps:
- name: checkout
uses: actions/checkout@v4
- run: nix build -L --no-link ".#hax"
charon:
runs-on: [self-hosted, linux, nix]
steps:
- name: checkout
uses: actions/checkout@v4
- run: nix build -L --no-link ".#charon"
eurydice:
runs-on: [self-hosted, linux, nix]
steps:
- name: checkout
uses: actions/checkout@v4
- run: nix build -L --no-link ".#eurydice"
ml-kem:
runs-on: [self-hosted, linux, nix]
steps:
- name: checkout
uses: actions/checkout@v4
- run: nix build -L --no-link ".#ml-kem"
bertie:
runs-on: [self-hosted, linux, nix]
steps:
- name: checkout
uses: actions/checkout@v4
- run: nix build -L --no-link ".#bertie"
success:
needs: [hax, charon, eurydice, ml-kem, bertie]
runs-on: [self-hosted, linux, nix]
if: success()
steps:
- run: |
echo "yay"
failure:
needs: [hax, charon, eurydice, ml-kem, bertie]
runs-on: [self-hosted, linux, nix]
if: failure()
steps:
- run: |
echo "hax: ${{ needs.hax.result }}"
echo "charon: ${{ needs.charon.result }}"
echo "eurydice: ${{ needs.eurydice.result }}"
echo "ml-kem: ${{ needs.ml-kem.result }}"
echo "bertie: ${{ needs.bertie.result }}"