-
Notifications
You must be signed in to change notification settings - Fork 479
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
2779e1b
commit d134840
Showing
13 changed files
with
127 additions
and
217 deletions.
There are no files selected for viewing
27 changes: 18 additions & 9 deletions
27
.github/workflows/check-changelog.yml → .github/workflows/changelog-label.yml
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
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# This workflow runs the cost model benchmark and uploads the results as a | ||
# GitHub artifact. | ||
|
||
name: "💰 Cost Model Benchmark" | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
entra-bench-args: | ||
description: 'extra argument(s) to pass to the cost-model-budgeting-bench command' | ||
default: '' | ||
type: string | ||
|
||
jobs: | ||
run: | ||
name: Run | ||
runs-on: [self-hosted, plutus-benchmark] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@main | ||
|
||
- name: Run Benchmark | ||
run: nix --accept-flake-config run .#cost-model-budgeting-bench -- --csv results.csv ${{ inputs.entra-bench-args }} | ||
|
||
- name: Upload Results | ||
uses: actions/upload-artifact@main | ||
with: | ||
name: results | ||
path: results.csv | ||
if-no-files-found: error |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
# This workflow builds and publishes the Docusaurus site to: | ||
# https://intersectmbo.github.io/plutus/docs | ||
|
||
name: "🦕 Deploy Docusaurus Site" | ||
name: "🦕 Docusaurus Site" | ||
|
||
on: | ||
workflow_dispatch: | ||
|
@@ -20,7 +20,7 @@ jobs: | |
|
||
- name: Build Site | ||
working-directory: doc/docusaurus | ||
run: nix develop --accept-flake-config --command bash -c 'yarn && yarn build' | ||
run: nix develop --no-warn-dirty --accept-flake-config --command bash -c 'yarn && yarn build' | ||
|
||
- name: Deploy Site | ||
uses: JamesIves/[email protected] | ||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ | |
# And optionally to: | ||
# https://intersectmbo.github.io/plutus/haddock/latest | ||
|
||
name: "📜 Deploy Haddock Site" | ||
name: "📜 Haddock Site" | ||
|
||
on: | ||
workflow_dispatch: | ||
|
@@ -48,7 +48,7 @@ jobs: | |
|
||
- name: Build Site | ||
run: | | ||
nix develop --accept-flake-config --command ./scripts/combined-haddock.sh _haddock all | ||
nix develop --no-warn-dirty --accept-flake-config --command ./scripts/combined-haddock.sh _haddock all | ||
- name: Deploy Site | ||
uses: JamesIves/[email protected] | ||
|
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
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
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
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
Oops, something went wrong.