-
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.
Merge branch 'master' of https://github.com/input-output-hk/plutus in…
…to effectfully/builtins/make-BuiltinFailure-the-last-constructor
- Loading branch information
Showing
1,134 changed files
with
21,583 additions
and
4,471 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 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
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
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,58 @@ | ||
# This workflows ensures that the plutus-tx-template repository stays working | ||
# even if there are changes in plutus. It checks out both the current commit of | ||
# plutus and the master branch of plutus-tx-template. Then, it creates a | ||
# cabal.project.local for plutus-tx-template that adjusts the plutus version. | ||
# Finally, it double-checks that everything still builds correctly using cabal | ||
# inside the devx shell. | ||
|
||
name: Plutus Tx Template | ||
|
||
on: | ||
pull_request: | ||
|
||
jobs: | ||
plutus-tx-template: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
steps: | ||
|
||
- name: Checkout plutus-tx-template | ||
uses: actions/[email protected] | ||
with: | ||
repository: IntersectMBO/plutus-tx-template | ||
path: plutus-tx-template | ||
|
||
- name: Checkout plutus | ||
uses: actions/[email protected] | ||
with: | ||
path: plutus-tx-template/plutus | ||
|
||
- name: Write cabal.project.local | ||
uses: DamianReeves/[email protected] | ||
with: | ||
path: plutus-tx-template/cabal.project.local | ||
write-mode: overwrite | ||
contents: | | ||
packages: | ||
plutus/plutus-tx | ||
plutus/plutus-tx-plugin | ||
plutus/plutus-core | ||
plutus/plutus-ledger-api | ||
plutus/prettyprinter-configurable | ||
allow-newer: | ||
plutus-tx | ||
, plutus-tx-plugin | ||
, plutus-core | ||
, plutus-ledger-api | ||
, prettyprinter-configurable | ||
- name: Build Project With Docker | ||
run: | | ||
cd plutus-tx-template | ||
ls -la | ||
docker run \ | ||
-v ./.:/workspaces/plutus-tx-template \ | ||
-w /workspaces/plutus-tx-template \ | ||
-i ghcr.io/input-output-hk/devx-devcontainer:x86_64-linux.ghc96-iog \ | ||
bash -ic "cabal update && cabal run plutus-tx-template && test -e validator.uplc" |
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.