Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -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.
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.
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,15 +11,15 @@ jobs:
nixbuild_token: ${{ secrets.nixbuild_token }}
access-tokens: github.com=${{ secrets.GITHUB_TOKEN }}
with:
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
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

dl-images:
runs-on: ubuntu-latest
needs: [build]
permissions: write-all
strategy:
matrix:
package: [ uniond-release, galoisd, bundle-testnet-5 ]
package: [ uniond-release, galoisd, bundle-testnet-6 ]
system: [ aarch64-linux, x86_64-linux ]
steps:
- uses: actions/download-artifact@v4
Expand Down Expand Up @@ -87,7 +87,7 @@ jobs:
permissions: write-all
strategy:
matrix:
package: [ uniond-release, galoisd, bundle-testnet-5 ]
package: [ uniond-release, galoisd, bundle-testnet-6 ]
services:
registry:
image: registry:2
Expand Down
18 changes: 18 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,10 @@
url = "github:unionlabs/union/release-v0.18.0";
flake = false;
};
v0_19_0 = {
url = "github:unionlabs/union/release-v0.19.0";
flake = false;
};
};
outputs =
inputs@{ self
Expand Down
14 changes: 7 additions & 7 deletions unionvisor/unionvisor.nix
Original file line number Diff line number Diff line change
Expand Up @@ -71,11 +71,11 @@
packages = {
inherit (unionvisorAll.packages) unionvisor;

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

bundle-testnet-5 =
bundle-testnet-6 =
mkBundle {
name = "testnet-5";
name = "testnet-6";
versions = uniondBundleVersions.complete;
genesis = ../networks/genesis/union-testnet-5/genesis.json;
meta = {
Expand All @@ -87,9 +87,9 @@

bundle-testnet-next =
mkBundle {
name = "testnet-5";
name = "testnet-6";
versions = uniondBundleVersions.complete;
nextVersion = "v0.18.0";
nextVersion = "v0.19.0";
genesis = ../networks/genesis/union-testnet-4/genesis.json;
meta = {
binary_name = "uniond";
Expand Down Expand Up @@ -125,12 +125,12 @@
enable = mkEnableOption "Unionvisor service";
bundle = mkOption {
type = types.package;
default = self.packages.${pkgs.system}.bundle-testnet-5;
default = self.packages.${pkgs.system}.bundle-testnet-6;
};
moniker = mkOption { type = types.str; };
network = mkOption {
type = types.str;
default = "union-testnet-5";
default = "union-testnet-6";
};
seeds = mkOption {
type = types.str;
Expand Down
3 changes: 2 additions & 1 deletion versions.json
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
{
"union-testnet-4": ["v0.14.0", "v0.15.0", "v0.16.0", "v0.17.0"],
"union-testnet-5": ["v0.18.0"]
"union-testnet-5": ["v0.18.0"],
"union-testnet-6": ["v0.19.0"]
}