Skip to content

Commit 3aad9bf

Browse files
authoredFeb 7, 2024··
feat: detatch v0.19.0 from testnet-5 (#1301)
Introduces bundle-testnet-6
2 parents 1f26b8c + a4fb913 commit 3aad9bf

File tree

6 files changed

+35
-12
lines changed

6 files changed

+35
-12
lines changed
 
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
A Unionvisor bundle containing everything you need to create a supervised node running on `union-testnet-5`. Unionvisor will supervise the `uniond` program ensuring it's updated at the correct upgrade height present on network.
1+
A Unionvisor bundle containing everything you need to create a supervised node running on `union-testnet-6`. Unionvisor will supervise the `uniond` program ensuring it's updated at the correct upgrade height present on network.

‎.github/workflows/release.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,15 @@ jobs:
1111
nixbuild_token: ${{ secrets.nixbuild_token }}
1212
access-tokens: github.com=${{ secrets.GITHUB_TOKEN }}
1313
with:
14-
filter_builds: '(.top_attr == "packages") and (.system == "x86_64-linux" or .system == "aarch64-linux") and (.attr == "uniond-release" or .attr == "galoisd" or .attr == "uniond-release-image" or .attr == "galoisd-image" or .attr == "bundle-testnet-5-image")' # ensure to append this list if you want to release more artifacts
14+
filter_builds: '(.top_attr == "packages") and (.system == "x86_64-linux" or .system == "aarch64-linux") and (.attr == "uniond-release" or .attr == "galoisd" or .attr == "uniond-release-image" or .attr == "galoisd-image" or .attr == "bundle-testnet-6-image")' # ensure to append this list if you want to release more artifacts
1515

1616
dl-images:
1717
runs-on: ubuntu-latest
1818
needs: [build]
1919
permissions: write-all
2020
strategy:
2121
matrix:
22-
package: [ uniond-release, galoisd, bundle-testnet-5 ]
22+
package: [ uniond-release, galoisd, bundle-testnet-6 ]
2323
system: [ aarch64-linux, x86_64-linux ]
2424
steps:
2525
- uses: actions/download-artifact@v4
@@ -87,7 +87,7 @@ jobs:
8787
permissions: write-all
8888
strategy:
8989
matrix:
90-
package: [ uniond-release, galoisd, bundle-testnet-5 ]
90+
package: [ uniond-release, galoisd, bundle-testnet-6 ]
9191
services:
9292
registry:
9393
image: registry:2

‎flake.lock

+18
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

‎flake.nix

+4
Original file line numberDiff line numberDiff line change
@@ -97,6 +97,10 @@
9797
url = "github:unionlabs/union/release-v0.18.0";
9898
flake = false;
9999
};
100+
v0_19_0 = {
101+
url = "github:unionlabs/union/release-v0.19.0";
102+
flake = false;
103+
};
100104
};
101105
outputs =
102106
inputs@{ self

‎unionvisor/unionvisor.nix

+7-7
Original file line numberDiff line numberDiff line change
@@ -71,11 +71,11 @@
7171
packages = {
7272
inherit (unionvisorAll.packages) unionvisor;
7373

74-
bundle-testnet-5-image = mkUnionvisorImage self'.packages.bundle-testnet-5;
74+
bundle-testnet-6-image = mkUnionvisorImage self'.packages.bundle-testnet-6;
7575

76-
bundle-testnet-5 =
76+
bundle-testnet-6 =
7777
mkBundle {
78-
name = "testnet-5";
78+
name = "testnet-6";
7979
versions = uniondBundleVersions.complete;
8080
genesis = ../networks/genesis/union-testnet-5/genesis.json;
8181
meta = {
@@ -87,9 +87,9 @@
8787

8888
bundle-testnet-next =
8989
mkBundle {
90-
name = "testnet-5";
90+
name = "testnet-6";
9191
versions = uniondBundleVersions.complete;
92-
nextVersion = "v0.18.0";
92+
nextVersion = "v0.19.0";
9393
genesis = ../networks/genesis/union-testnet-4/genesis.json;
9494
meta = {
9595
binary_name = "uniond";
@@ -125,12 +125,12 @@
125125
enable = mkEnableOption "Unionvisor service";
126126
bundle = mkOption {
127127
type = types.package;
128-
default = self.packages.${pkgs.system}.bundle-testnet-5;
128+
default = self.packages.${pkgs.system}.bundle-testnet-6;
129129
};
130130
moniker = mkOption { type = types.str; };
131131
network = mkOption {
132132
type = types.str;
133-
default = "union-testnet-5";
133+
default = "union-testnet-6";
134134
};
135135
seeds = mkOption {
136136
type = types.str;

‎versions.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
{
22
"union-testnet-4": ["v0.14.0", "v0.15.0", "v0.16.0", "v0.17.0"],
3-
"union-testnet-5": ["v0.18.0"]
3+
"union-testnet-5": ["v0.18.0"],
4+
"union-testnet-6": ["v0.19.0"]
45
}

0 commit comments

Comments
 (0)
Please sign in to comment.