Skip to content

Commit

Permalink
Fix dead links
Browse files Browse the repository at this point in the history
  • Loading branch information
carbolymer committed Aug 1, 2023
1 parent 8d54a99 commit e544129
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions docs/Benchmarking-Hacking.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,9 +151,9 @@ Workbench (Links are to master branch but there's a workbench-master branch):
1. [Top-level wb script](https://github.com/input-output-hk/cardano-node/blob/master/nix/workbench/wb)
1. First thought: Why this scripts starts with ```#!/usr/bin/env bash```,
shouldn't it be a ```/nix/store/sdfsjdlhflsdhflsdkjh```?
2. [Profile computation (profile.sh)](https://github.com/input-output-hk/cardano-node/blob/master/nix/workbench/profile.sh)
2. [Profile computation (profile.sh)](https://github.com/input-output-hk/cardano-node/blob/master/nix/workbench/profile/profile.sh)
3. [Run allocation & starting](https://github.com/input-output-hk/cardano-node/blob/master/nix/workbench/run.sh)
4. [Run scenarios](https://github.com/input-output-hk/cardano-node/blob/bench-master/nix/workbench/scenario.sh)
4. [Run scenarios](https://github.com/input-output-hk/cardano-node/blob/master/nix/workbench/scenario.sh)

### About profile computation

Expand Down Expand Up @@ -182,7 +182,7 @@ profile = materialise-profile
backendProfile = backend.materialise-profile { inherit profileNix; };
};
```
and [```workbench/profile.nix```](https://github.com/input-output-hk/cardano-node/blob/master/nix/workbench/profile.nix) does at the end:
and [```workbench/profile.nix```](https://github.com/input-output-hk/cardano-node/blob/master/nix/workbench/profile/profile.nix) does at the end:
```
''
mkdir $out
Expand All @@ -194,7 +194,7 @@ cp $tracerServicePath $out/tracer-service.json
wb profile node-specs $out/profile.json > $out/node-specs.json
''
```
after importing [```workbench/profiles/default.nix```](https://github.com/input-output-hk/cardano-node/blob/master/nix/workbench/profiles/default.nix).
after importing [```workbench/default.nix```](https://github.com/input-output-hk/cardano-node/blob/master/nix/workbench/default.nix).

The only thing ```wb``` needs is the profile outputs as they are created by [```workbench/profiles/default.nix```](https://github.com/input-output-hk/cardano-node/blob/master/nix/workbench/profiles/default.nix).

Expand Down
4 changes: 2 additions & 2 deletions docs/Docker.md
Original file line number Diff line number Diff line change
Expand Up @@ -53,5 +53,5 @@ docker load -i $(nix-build -A dockerImage --no-out-link)
```
If you have no local changes, the build should be downloaded from
the [IOHK binary cache](https://hydra.iohk.io/jobset/Cardano/cardano-node)
then loaded into the local Docker registry.
the [IOHK binary cache](https://ci.iog.io/project/input-output-hk-cardano-node)
then loaded into the local Docker registry.
2 changes: 1 addition & 1 deletion docs/Running-tests.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cabal test all --enable-tests
```

Many of tests are automatically run in CI in PRs. For an exact list of which tests are run,
please see the "Run tests" step in [haskell.yml](../blob/master/.github/workflows/haskell.yml) Github
please see the "Run tests" step in [haskell.yml](https://github.com/input-output-hk/cardano-node/blob/master/.github/workflows/haskell.yml) Github
Actions workflow file.

# Types of tests
Expand Down

0 comments on commit e544129

Please sign in to comment.