Skip to content

Commit

Permalink
Fix combined-haddock.sh, remove release-1.30.0.0 folder, restore card…
Browse files Browse the repository at this point in the history
…ano-crypto-class ^>=2.2 (#6808)
  • Loading branch information
zeme-wana authored Jan 29, 2025
1 parent 832e119 commit 89367c5
Show file tree
Hide file tree
Showing 6 changed files with 24 additions and 7 deletions.
4 changes: 3 additions & 1 deletion .github/workflows/cabal-build-all.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ name: "👷 Cabal Build All"

on:
workflow_dispatch:
pull_request:
push:
branches:
- master

jobs:
build:
Expand Down
16 changes: 16 additions & 0 deletions doc/docusaurus/docusaurus-examples.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -57,3 +57,19 @@ executable example-cip57
, containers
, plutus-ledger-api ^>=1.40
, plutus-tx ^>=1.40

executable quickstart
import: lang, ghc-version-support, os-support
main-is: QuickStart.hs
hs-source-dirs: static/code
default-language: Haskell2010
other-modules: AuctionValidator
build-depends:
, base >=4.9 && <5
, base16-bytestring
, bytestring
, plutus-ledger-api ^>=1.40
, plutus-tx ^>=1.40

if !(impl(ghcjs) || os(ghcjs))
build-depends: plutus-tx-plugin ^>=1.40
2 changes: 1 addition & 1 deletion plutus-benchmark/plutus-benchmark.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -490,7 +490,7 @@ library marlowe-internal
build-depends:
, base
, bytestring
, cardano-crypto-class ^>=2.1.5
, cardano-crypto-class
, directory
, filepath
, mtl
Expand Down
4 changes: 2 additions & 2 deletions plutus-core/plutus-core.cabal
Original file line number Diff line number Diff line change
Expand Up @@ -293,8 +293,8 @@ library
, bimap
, bytestring
, bytestring-strict-builder
, cardano-crypto
, cardano-crypto-class ^>=2.1.5
, cardano-crypto >=1.2
, cardano-crypto-class ^>=2.2
, cassava
, cborg
, composition-prelude >=1.1.0.1
Expand Down
1 change: 0 additions & 1 deletion release-1.39.0.0
Submodule release-1.39.0.0 deleted from d2dfec
4 changes: 2 additions & 2 deletions scripts/combined-haddock.sh
Original file line number Diff line number Diff line change
Expand Up @@ -195,9 +195,9 @@ EOF
# Then for each package-version we produce a different sed substitution.


NUM_FILES=$(find "${OUTPUT_DIR}" -type f -name "*.html" | wc -l)
NUM_FILES=$(find "${OUTPUT_DIR}" -type f -name "*.html" -or -name "doc-index.json" | wc -l)
echo "Applying sed to ${NUM_FILES} files"
time find "${OUTPUT_DIR}" -name "*.html" | xargs sed -i -E -f "${BUILD_DIR}/sedscript.txt"
time find "${OUTPUT_DIR}" -name "*.html" -or -name "doc-index.json" | xargs sed -i -E -f "${BUILD_DIR}/sedscript.txt"


echo "Checking that all hrefs to /nix/store were replaced"
Expand Down

1 comment on commit 89367c5

@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.

⚠️ Performance Alert ⚠️

Possible performance regression was detected for benchmark 'Plutus Benchmarks'.
Benchmark result of this commit is worse than the previous benchmark result exceeding threshold 1.05.

Benchmark suite Current: 89367c5 Previous: 832e119 Ratio
validation-decode-escrow-redeem_2-1 320.4 μs 304.5 μs 1.05

This comment was automatically generated by workflow using github-action-benchmark.

CC: @IntersectMBO/plutus-core

Please sign in to comment.