forked from penumbra-zone/penumbra
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge tag 'v0.80.7' of github.com:penumbra-zone/penumbra into noot/ib…
…c-height-hack-v0.80.7 Penumbra version 0.80.7
- Loading branch information
Showing
159 changed files
with
17,648 additions
and
1,034 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
--- | ||
name: Point release | ||
about: Checklist for preparing a point release for tooling | ||
title: Release vX.Y.Z, via point-release | ||
labels: '' | ||
assignees: '' | ||
--- | ||
|
||
# Tooling Release | ||
|
||
<!-- | ||
Explain the rationale for this release: did a particular bugfix land that we want to ship quickly? | ||
Is an external consumer blocked on a new RPC? | ||
--> | ||
In order to ship some minor improvements and bug fixes, let's prepare a `vX.Y.Z.` release, flushing out the current contents of the main branch. | ||
|
||
## Changes to include | ||
<!-- | ||
Explain the rationale for this release: did a particular bugfix land that we want to ship quickly? | ||
Is an external consumer blocked on a new RPC? | ||
--> | ||
|
||
- [ ] Everything on current main | ||
- [ ] Feature foo in PR: | ||
- [ ] Feature bar in PR: | ||
|
||
## Compatibility | ||
As this is a point-release, all changes must be fully compatible for all nodes and clients. | ||
Careful attention should be given to the delta between most recent tag on the main branch: | ||
https://github.com/penumbra-zone/penumbra/compare/v(X.Y.(Z-1)..main |
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 |
---|---|---|
@@ -1,9 +1,16 @@ | ||
## Describe your changes | ||
|
||
<!-- | ||
Describe what's changed and why. If interactive testing is required, explain | ||
to the reviewer how the PR should be tested. | ||
--> | ||
|
||
## Issue ticket number and link | ||
|
||
## Checklist before requesting a review | ||
|
||
- [ ] I have added guiding text to explain how a reviewer should test these changes. | ||
|
||
- [ ] If this code contains consensus-breaking changes, I have added the "consensus-breaking" label. Otherwise, I declare my belief that there are not consensus-breaking changes, for the following reason: | ||
|
||
> REPLACE THIS TEXT WITH RATIONALE (CAN BE BRIEF) |
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 |
---|---|---|
|
@@ -5,12 +5,13 @@ on: | |
paths-ignore: | ||
- 'docs/**' | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
smoke_test: | ||
runs-on: buildjet-16vcpu-ubuntu-2204 | ||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
environment: smoke-test | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
@@ -39,3 +40,30 @@ jobs: | |
- name: Display smoke-test logs | ||
if: always() | ||
run: cat deployments/logs/smoke-*.log | ||
|
||
pmonitor-integration: | ||
runs-on: buildjet-16vcpu-ubuntu-2204 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
lfs: true | ||
|
||
- name: install nix | ||
uses: nixbuild/nix-quick-install-action@v28 | ||
|
||
- name: setup nix cache | ||
uses: nix-community/cache-nix-action@v5 | ||
with: | ||
primary-key: nix-${{ runner.os }}-${{ hashFiles('**/*.nix') }} | ||
restore-prefixes-first-match: nix-${{ runner.os }}- | ||
backend: buildjet | ||
|
||
- name: Load rust cache | ||
uses: astriaorg/[email protected] | ||
|
||
# Confirm that the nix devshell is buildable and runs at all. | ||
- name: validate nix env | ||
run: nix develop --command echo hello | ||
|
||
- name: run the pmonitor integration tests | ||
run: nix develop --command just test-pmonitor |
Oops, something went wrong.