Skip to content

Commit 56b358c

Browse files
Feat/transfer Erigon refactoring (#12)
* chore(refactor): project imports * chore(lint): all * chore(lint): build-release * chore(lint): build-master
1 parent 32a7510 commit 56b358c

File tree

115 files changed

+294
-294
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

115 files changed

+294
-294
lines changed

.github/workflows/build-master.yml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
ref: ${{ github.sha }}
2929
release: "snapshot"
3030
docker: true
31-
docker_repository: "noku-team/assertoor"
31+
docker_repository: "erigontech/assertoor"
3232
docker_tag_prefix: "master"
3333
additional_tags: "['master','master-latest']"
3434
secrets:
@@ -145,16 +145,16 @@ jobs:
145145
## Latest automatically built executables. (Unstable development snapshot)
146146
Built from master branch (commit: ${{ github.sha }})
147147
148-
Please read the [wiki](https://github.com/noku-team/assertoor/wiki) for setup / configuration instructions.
148+
Please read the [wiki](https://github.com/erigontech/assertoor/wiki) for setup / configuration instructions.
149149
150150
### Release Artifacts
151151
| Release File | Description |
152152
| ------------- | ------------- |
153-
| [assertoor_snapshot_windows_amd64.zip](https://github.com/noku-team/assertoor/releases/download/snapshot/assertoor_snapshot_windows_amd64.zip) | assertoor executables for windows/amd64 |
154-
| [assertoor_snapshot_linux_amd64.tar.gz](https://github.com/noku-team/assertoor/releases/download/snapshot/assertoor_snapshot_linux_amd64.tar.gz) | assertoor executables for linux/amd64 |
155-
| [assertoor_snapshot_linux_arm64.tar.gz](https://github.com/noku-team/assertoor/releases/download/snapshot/assertoor_snapshot_linux_arm64.tar.gz) | assertoor executables for linux/arm64 |
156-
| [assertoor_snapshot_darwin_amd64.tar.gz](https://github.com/noku-team/assertoor/releases/download/snapshot/assertoor_snapshot_darwin_amd64.tar.gz) | assertoor executable for macos/amd64 |
157-
| [assertoor_snapshot_darwin_arm64.tar.gz](https://github.com/noku-team/assertoor/releases/download/snapshot/assertoor_snapshot_darwin_arm64.tar.gz) | assertoor executable for macos/arm64 |
153+
| [assertoor_snapshot_windows_amd64.zip](https://github.com/erigontech/assertoor/releases/download/snapshot/assertoor_snapshot_windows_amd64.zip) | assertoor executables for windows/amd64 |
154+
| [assertoor_snapshot_linux_amd64.tar.gz](https://github.com/erigontech/assertoor/releases/download/snapshot/assertoor_snapshot_linux_amd64.tar.gz) | assertoor executables for linux/amd64 |
155+
| [assertoor_snapshot_linux_arm64.tar.gz](https://github.com/erigontech/assertoor/releases/download/snapshot/assertoor_snapshot_linux_arm64.tar.gz) | assertoor executables for linux/arm64 |
156+
| [assertoor_snapshot_darwin_amd64.tar.gz](https://github.com/erigontech/assertoor/releases/download/snapshot/assertoor_snapshot_darwin_amd64.tar.gz) | assertoor executable for macos/amd64 |
157+
| [assertoor_snapshot_darwin_arm64.tar.gz](https://github.com/erigontech/assertoor/releases/download/snapshot/assertoor_snapshot_darwin_arm64.tar.gz) | assertoor executable for macos/arm64 |
158158
env:
159159
GITHUB_TOKEN: ${{ github.token }}
160160

.github/workflows/build-noku.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ on:
1818

1919
env:
2020
REGISTRY: ghcr.io
21-
IMAGE_NAME: noku-team/assertoor
21+
IMAGE_NAME: erigontech/assertoor
2222

2323
jobs:
2424
build-and-push:

.github/workflows/build-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
ref: ${{ github.sha }}
2020
release: "v${{ inputs.version }}"
2121
docker: true
22-
docker_repository: "noku-team/assertoor"
22+
docker_repository: "erigontech/assertoor"
2323
docker_tag_prefix: "v${{ inputs.version }}"
2424
additional_tags: "['v${{ inputs.version }}','latest']"
2525
secrets:

.vscode/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -175,8 +175,8 @@ web:
175175
176176
# Custom external tests
177177
externalTests:
178-
- file: https://raw.githubusercontent.com/noku-team/assertoor/master/playbooks/stable/block-proposal-check.yaml
179-
- file: https://raw.githubusercontent.com/noku-team/assertoor/master/playbooks/dev/tx-pool-check-short.yaml
178+
- file: https://raw.githubusercontent.com/erigontech/assertoor/master/playbooks/stable/block-proposal-check.yaml
179+
- file: https://raw.githubusercontent.com/erigontech/assertoor/master/playbooks/dev/tx-pool-check-short.yaml
180180
181181
# Custom logging configuration
182182
logging:

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# assertoor
22
VERSION := $(shell git rev-parse --short HEAD)
3-
GOLDFLAGS += -X 'github.com/noku-team/assertoor/pkg/coordinator/buildinfo.BuildVersion="$(VERSION)"'
4-
GOLDFLAGS += -X 'github.com/noku-team/assertoor/pkg/coordinator/buildinfo.BuildRelease="$(RELEASE)"'
3+
GOLDFLAGS += -X 'github.com/erigontech/assertoor/pkg/coordinator/buildinfo.BuildVersion="$(VERSION)"'
4+
GOLDFLAGS += -X 'github.com/erigontech/assertoor/pkg/coordinator/buildinfo.BuildRelease="$(RELEASE)"'
55
CURRENT_UID := $(shell id -u)
66
CURRENT_GID := $(shell id -g)
77

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,18 +31,18 @@ Assertoor is a robust and versatile tool designed for comprehensive testing of t
3131
- **Web API**:\
3232
An API interface provides real-time test and task status, logs, and results for easy programmatic access. \
3333
This feature enables simple integration with other systems and facilitates automated monitoring and analysis workflows.\
34-
eg. for running [scheduled tests with github workflows](https://github.com/noku-team/assertoor-test)
34+
eg. for running [scheduled tests with github workflows](https://github.com/erigontech/assertoor-test)
3535

3636
## Getting Started
3737

3838
1. **Clone the repository & build the tool**:
3939
```
40-
git clone https://github.com/noku-team/assertoor.git
40+
git clone https://github.com/erigontech/assertoor.git
4141
cd assertoor
4242
make build
4343
```
4444
2. **Configure Your Tests**:\
45-
Prepare tests in a YAML file. See example configurations [here](https://github.com/noku-team/assertoor/tree/master/example/config). \
45+
Prepare tests in a YAML file. See example configurations [here](https://github.com/erigontech/assertoor/tree/master/example/config). \
4646
Provide RPC URLs for at least one Client Pair (consensus & execution).
4747
3. **Run Assertoor**:\
4848
Launch the tool to execute defined tests.
@@ -54,8 +54,8 @@ Assertoor is a robust and versatile tool designed for comprehensive testing of t
5454
5555
## Documentation and Examples
5656
57-
Refer to our [documentation](https://github.com/noku-team/assertoor/wiki) for installation, configuration, and usage guidelines. \
58-
Example tests are available [here](https://github.com/noku-team/assertoor/tree/master/playbooks).
57+
Refer to our [documentation](https://github.com/erigontech/assertoor/wiki) for installation, configuration, and usage guidelines. \
58+
Example tests are available [here](https://github.com/erigontech/assertoor/tree/master/playbooks).
5959
6060
## Contributing
6161

cmd/root.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package cmd
33
import (
44
"context"
55

6-
"github.com/noku-team/assertoor/pkg/coordinator"
7-
"github.com/noku-team/assertoor/pkg/coordinator/buildinfo"
6+
"github.com/erigontech/assertoor/pkg/coordinator"
7+
"github.com/erigontech/assertoor/pkg/coordinator/buildinfo"
88
"github.com/sirupsen/logrus"
99
"github.com/spf13/cobra"
1010
)

cmd/tasks.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import (
77
"fmt"
88
"log"
99

10-
"github.com/noku-team/assertoor/pkg/coordinator/tasks"
10+
"github.com/erigontech/assertoor/pkg/coordinator/tasks"
1111
"github.com/spf13/cobra"
1212
"gopkg.in/yaml.v3"
1313
)

docs/01-setup.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
Assertoor provides distribution-specific executables for Windows, Linux, and macOS.
66

77
1. **Download the Latest Release**:\
8-
Navigate to the [Releases](https://github.com/noku-team/assertoor/releases) page and download the latest version suitable for your operating system.
8+
Navigate to the [Releases](https://github.com/erigontech/assertoor/releases) page and download the latest version suitable for your operating system.
99

1010
2. **Run the Executable**:\
1111
After downloading, run the executable with a test configuration file. The command will be similar to the following:
@@ -21,7 +21,7 @@ If you prefer to build Assertoor from source, ensure you have [Go](https://go.de
2121
1. **Clone the Repository**:\
2222
Use the following commands to clone the Assertoor repository and navigate to its directory:
2323
```
24-
git clone https://github.com/noku-team/assertoor.git
24+
git clone https://github.com/erigontech/assertoor.git
2525
cd assertoor
2626
```
2727
2. **Build the Tool**:\

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/noku-team/assertoor
1+
module github.com/erigontech/assertoor
22

33
go 1.23.0
44

0 commit comments

Comments
 (0)