Skip to content

Commit

Permalink
Fully functional network scores (#5048)
Browse files Browse the repository at this point in the history
* Compile & copy wg probe

* Node status agent WIP

* Enable debug logging

* Agent submits results
- add clap to agent
- agent runs network probe
- /submit endpoint on NS API

* Build clients with timeouts

* Update logging and dev scripts

* Replace /blaclisted endpoint

* Testruns fully functional
- task that queues testruns periodically
- testruns read/write in DB

* Probe scores fully working
- testruns are assigned on API
- submit updates testruns correctly on NS API side
- agent registers with API
- agent submits results correctly

* Clippy fixes

* PR feedback

* Clippy again

* PR feedback

* Run clippy earlier in CI

* Make refresh delay configurable in server & agent
  • Loading branch information
dynco-nym committed Oct 28, 2024
1 parent 40d9321 commit cc98396
Show file tree
Hide file tree
Showing 43 changed files with 1,184 additions and 165 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,12 @@ jobs:
command: fmt
args: --all -- --check

- name: Clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --workspace --all-targets -- -D warnings

- name: Build all binaries
uses: actions-rs/cargo@v1
with:
Expand All @@ -82,9 +88,3 @@ jobs:
with:
command: test
args: --workspace -- --ignored

- name: Clippy
uses: actions-rs/cargo@v1
with:
command: clippy
args: --workspace --all-targets -- -D warnings
Loading

0 comments on commit cc98396

Please sign in to comment.