Skip to content

Commit

Permalink
test(examples): goth debug
Browse files Browse the repository at this point in the history
  • Loading branch information
mgordel committed Sep 25, 2023
1 parent 77a2671 commit a57d8d2
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/goth-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,6 @@ jobs:
rm -rf ../goth/assets
python -m goth create-assets ../goth/assets
sed -Ezi 's/(use\-proxy:\s)(True)/\1False/mg' ../goth/assets/goth-config.yml
sed -Ezi 's/(use\-prerelease:\s)(false)/\1true\n release-tag: "0.13.0-rc10"/mg' ../goth/assets/goth-config.yml
sed -i '/^ENTRYPOINT/i ENV YAGNA_AUTOCONF_APPKEY=try_golem' ../goth/assets/docker/yagna-goth-deb.Dockerfile
- name: Disconnect Docker containers from default network
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import { TaskExecutor } from "@golem-sdk/golem-js";
const executor = await TaskExecutor.create({
package: "529f7fdaf1cf46ce3126eb6bbcd3b213c314fe8fe884914f5d1106d4",
yagnaOptions: { apiKey: "try_golem" },
logLevel: "debug",
});

const result = await executor.run(async (ctx) => {
Expand Down
2 changes: 1 addition & 1 deletion tests/goth/goth.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export class Goth {
process.env["PATH"] = `${path}:${process.env["PATH"]}`;
process.env["YAGNA_SUBNET"] = subnetTag;
// Note: rinkeby is a test network which is dead, but our goth runners exist on a custom deployment of this network
process.env["PAYMENT_NETWORK"] = "rinkeby";
// process.env["PAYMENT_NETWORK"] = "rinkeby";

const settings = { apiKey, basePath, subnetTag, gsbUrl, path };

Expand Down

0 comments on commit a57d8d2

Please sign in to comment.