Skip to content

Commit

Permalink
sldfkj
Browse files Browse the repository at this point in the history
  • Loading branch information
Nadrieril committed Nov 13, 2024
1 parent 7eddcc3 commit 85597e5
Show file tree
Hide file tree
Showing 2 changed files with 28 additions and 68 deletions.
29 changes: 28 additions & 1 deletion .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,27 @@ on:
schedule:
- cron: '0 0 * * *'
workflow_dispatch:
inputs:
hax:
description: "Hax"
type: "string"
default: "main"
charon:
description: "Charon"
type: "string"
default: "main"
eurydice:
description: "Eurydice"
type: "string"
default: "main"
libcrux:
description: "Libcrux"
type: "string"
default: "main"
bertie:
description: "Bertie"
type: "string"
default: "main"
push:

# Cancel previous versions of this job that are still running.
Expand All @@ -17,6 +38,12 @@ jobs:
uses: actions/checkout@v4

- name: update
env:
HAX_BRANCH: ${{ inputs.hax || "main" }}
CHARON_BRANCH: ${{ inputs.charon || "main" }}
EURYDICE_BRANCH: ${{ inputs.eurydice || "main" }}
LIBCRUX_BRANCH: ${{ inputs.libcrux || "main" }}
BERTIE_BRANCH: ${{ inputs.bertie || "main" }}
run: ./update.sh

# Commit the update onto a new branch
Expand Down Expand Up @@ -53,7 +80,7 @@ jobs:
with:
ref: nightly
# - run: nix build -L --no-link ".#charon"
- run: false
- run: true

eurydice:
needs: update-flake
Expand Down
67 changes: 0 additions & 67 deletions .github/workflows/test.yml

This file was deleted.

0 comments on commit 85597e5

Please sign in to comment.