-
Notifications
You must be signed in to change notification settings - Fork 483
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into ana/data-value-ledg…
…er-api
- Loading branch information
Showing
1,472 changed files
with
47,639 additions
and
44,712 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
# This job checks for broken links in various files in the repo. | ||
|
||
name: "🔗 Broken Links" | ||
|
||
on: | ||
workflow_dispatch: # Or manually dispatch the job | ||
push: | ||
branches: | ||
master | ||
|
||
jobs: | ||
check: | ||
name: Check | ||
runs-on: [plutus-shared, self-hosted] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@main | ||
|
||
- name: Run Linkchecker | ||
run: | | ||
nix develop --no-warn-dirty --accept-flake-config --command ./scripts/check-broken-links.sh | ||
|
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,21 @@ | ||
# This workflow runs the nighlty cardano-constitution tests | ||
|
||
name: "🗽 Cardano Constitution Tests" | ||
|
||
on: | ||
workflow_dispatch: | ||
schedule: | ||
- cron: 0 2 * * * # Daily at 2am | ||
|
||
jobs: | ||
run: | ||
name: Run | ||
runs-on: [self-hosted, plutus-shared] | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@main | ||
|
||
- name: Run Tests | ||
run: | | ||
pushd plutus-core | ||
nix run --no-warn-dirty --accept-flake-config .#cardano-constitution-test |
26 changes: 17 additions & 9 deletions
26
.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 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,31 @@ | ||
# 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] | ||
timeout-minutes: 1800 # (30 hours) These benchmarks take over 10 hours to run. | ||
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 |
---|---|---|
@@ -0,0 +1,33 @@ | ||
# This workflow builds and publishes the Docusaurus site to: | ||
# https://plutus.cardano.intersectmbo.org/docs | ||
|
||
name: "🦕 Docusaurus Site" | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
workflow_dispatch: | ||
|
||
jobs: | ||
deploy: | ||
name: Deploy | ||
runs-on: [self-hosted, plutus-shared] | ||
permissions: | ||
contents: write | ||
environment: | ||
name: github-pages | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@main | ||
|
||
- name: Build Site | ||
working-directory: doc/docusaurus | ||
run: nix develop --no-warn-dirty --accept-flake-config --command bash -c 'yarn && yarn build' | ||
|
||
- name: Deploy Site | ||
uses: JamesIves/github-pages-deploy-action@v4.6.3 | ||
with: | ||
folder: doc/docusaurus/build | ||
target-folder: docs | ||
single-commit: true |
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,77 @@ | ||
# This workflow builds and publishes the Haddock site to: | ||
# https://plutus.cardano.intersectmbo.org/haddock/$version | ||
# And optionally to: | ||
# https://plutus.cardano.intersectmbo.org/haddock/latest | ||
# On push to master, this workflows publishes to: | ||
# https://plutus.cardano.intersectmbo.org/haddock/master | ||
|
||
name: "📜 Haddock Site" | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
workflow_dispatch: | ||
inputs: | ||
ref: | ||
description: | | ||
The $ref to build off of, e.g. "1.29.0.0", "master", or any other valid git ref. | ||
When making a release, this is usually the version tag, e.g. "1.29.0.0", and will be | ||
equal to the $destination input below. When back-porting this could be a commit sha instead. | ||
required: true | ||
type: string | ||
|
||
destination: | ||
description: | | ||
The $destination folder, e.g. when "1.29.0.0" the haddock will be deploy to: | ||
https://plutus.cardano.intersectmbo.org/haddock/1.29.0.0 | ||
required: true | ||
type: string | ||
|
||
latest: | ||
description: | | ||
If true, then the haddock site will also be deploy to: | ||
https://plutus.cardano.intersectmbo.org/haddock/latest. | ||
You want to leave this to true unless you are deploying old versions or back-porting. | ||
type: boolean | ||
required: true | ||
default: true | ||
|
||
jobs: | ||
deploy: | ||
name: Deploy | ||
runs-on: [self-hosted, plutus-shared] | ||
permissions: | ||
contents: write | ||
environment: | ||
name: github-pages | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@main | ||
with: | ||
ref: ${{ inputs.ref || github.ref_name }} | ||
|
||
- name: Checkout Haddock Script | ||
run: | | ||
git fetch origin master | ||
git checkout origin/master ./scripts/combined-haddock.sh | ||
- name: Build Site | ||
run: | | ||
nix develop --no-warn-dirty --accept-flake-config --command ./scripts/combined-haddock.sh _haddock all | ||
- name: Deploy Site | ||
uses: JamesIves/github-pages-deploy-action@v4.6.3 | ||
with: | ||
folder: _haddock | ||
target-folder: haddock/${{ inputs.destination || github.ref_name }} | ||
single-commit: true | ||
|
||
- name: Deploy Site (latest) | ||
if: ${{ inputs.latest == true }} | ||
uses: JamesIves/github-pages-deploy-action@v4.6.3 | ||
with: | ||
folder: _haddock | ||
target-folder: haddock/latest | ||
single-commit: true |
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.