Skip to content

Commit

Permalink
ci: nightly GitHub Action workflow (#1070)
Browse files Browse the repository at this point in the history
* ci: nightly GitHub Action workflow

- Renames the nightly workflow test in '.github/workflows/nightly.yml'
- detects unused dependencies,
- detects Rust version becoming stale w.r.t. stable

Fixes #983

* fix: inference.ag URL
  • Loading branch information
huitseeker authored Jan 19, 2024
1 parent 944c1d9 commit 3476fc7
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
14 changes: 11 additions & 3 deletions .github/workflows/nightly.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
name: Nightly tests on main
# Nightly sanity checks
name: nightly

on:
workflow_dispatch: {}
# Once per day at 00:00 UTC
schedule:
- cron: '0 0 * * *'
- cron: "0 0 * * *"

jobs:
linux_exhaustive:
Expand Down Expand Up @@ -98,4 +101,9 @@ jobs:
labels: |
nightly
automated issue
unused-dependencies:
uses: lurk-lab/ci-workflows/.github/workflows/unused-deps.yml@main

rust-version-check:
uses: lurk-lab/ci-workflows/.github/workflows/rust-version-check.yml@main
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Lurk backend integration is still immature, so current performance is not repres
- [Reduction Notes](notes/reduction-notes.md)

# Security Audit
Lurk's Alpha release has undergone a [security audit](https://blog.lurk-lang.org/posts/alpha-audit/inference-security-assessment-3-2023.pdf) as of 03/29/2023, performed by [Inference](https://inference.ag/company/).
Lurk's Alpha release has undergone a [security audit](https://blog.lurk-lang.org/posts/alpha-audit/inference-security-assessment-3-2023.pdf) as of 03/29/2023, performed by [Inference](https://inference.ag/about-us/).

# Versioning

Expand Down

1 comment on commit 3476fc7

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Benchmarks

Table of Contents

Overview

This benchmark report shows the Fibonacci GPU benchmark.
NVIDIA L4
Intel(R) Xeon(R) CPU @ 2.20GHz
32 vCPUs
125 GB RAM
Workflow run: https://github.com/lurk-lab/lurk-rs/actions/runs/7578622674

Benchmark Results

LEM Fibonacci Prove - rc = 100

ref=944c1d93ce0b17d7f1deb291fd5201896b0c3ef0 ref=3476fc787217e67932287cf22d416cd80e64139a
num-100 1.74 s (✅ 1.00x) 1.74 s (✅ 1.00x slower)
num-200 3.36 s (✅ 1.00x) 3.37 s (✅ 1.00x slower)

LEM Fibonacci Prove - rc = 600

ref=944c1d93ce0b17d7f1deb291fd5201896b0c3ef0 ref=3476fc787217e67932287cf22d416cd80e64139a
num-100 2.02 s (✅ 1.00x) 2.05 s (✅ 1.01x slower)
num-200 3.38 s (✅ 1.00x) 3.41 s (✅ 1.01x slower)

Made with criterion-table

Please sign in to comment.