Skip to content

Commit

Permalink
Merge pull request #189 from golemfactory/mw/bump-yagna
Browse files Browse the repository at this point in the history
Bump yagna to `pre-rel-v0.16.0-preview.ai.28`
  • Loading branch information
mwalkiewicz authored Jul 29, 2024
2 parents 3810d9c + 03ab70d commit 908e847
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Golem.Package/Args.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ public class BuildArgs
{
[Option('t', "target", Default = "package", Required = false, HelpText = "Directory where binaries will be generated relative to working dir")]
public required string Target { get; set; }
[Option('y', "yagna-version", Default = "pre-rel-v0.16.0-preview.ai.24", Required = false, HelpText = "Yagna version github tag")]
[Option('y', "yagna-version", Default = "pre-rel-v0.16.0-preview.ai.28", Required = false, HelpText = "Yagna version github tag")]
public required string GolemVersion { get; set; }
[Option('r', "runtime-version", Default = "v0.2.3", Required = false, HelpText = "Runtime version github tag")]
public required string RuntimeVersion { get; set; }
Expand All @@ -32,4 +32,4 @@ public class BuildRequestorArgs
{
[Option('t', "target", Default = "modules/Requestor", Required = false, HelpText = "Directory where binaries will be generated relative to working dir")]
public required string Target { get; set; }
}
}
4 changes: 2 additions & 2 deletions Golem.Tools/GolemPackageBuilder.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ namespace Golem.Tools
{
public class PackageBuilder
{
public static string CURRENT_GOLEM_VERSION = "pre-rel-v0.16.0-preview.ai.24";
public static string CURRENT_GOLEM_VERSION = "pre-rel-v0.16.0-preview.ai.28";
public static string CURRENT_RUNTIME_VERSION = "v0.2.3";

internal static string InitTestDirectory(string name, bool cleanupData = true)
Expand Down Expand Up @@ -343,4 +343,4 @@ static async Task<string> DownloadArchiveArtifact(string artifact, string tag, s
}


}
}
2 changes: 1 addition & 1 deletion MockGUI/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ dotnet run --project Golem.Package -- download --target modules --version pre-re
In case of building artifacts locally you can specify `yagna` and `runtimes` versions:

```sh
dotnet run --project Golem.Package -- build --target modules --yagna-version pre-rel-v0.16.0-preview.ai.24 --runtime-version v0.2.3
dotnet run --project Golem.Package -- build --target modules --yagna-version pre-rel-v0.16.0-preview.ai.28 --runtime-version v0.2.3
```

## Running
Expand Down
2 changes: 1 addition & 1 deletion scripts/automatic.ps1
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
param (
[string]$automatic_runtime_package_url = "https://gpu-on-golem.s3.eu-central-1.amazonaws.com/sd-webui-standalone/sd-webui-gh-v0.2.1.zip",
[string]$automatic_runtime_package_url = "https://gpu-on-golem.s3.eu-central-1.amazonaws.com/sd-webui-standalone/sd-webui-gh-v0.2.2.zip",
[string]$automatic_package_dir = "package",
[bool]$compress = 0,
[bool]$cleanup = 0
Expand Down

0 comments on commit 908e847

Please sign in to comment.