-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: e2e workflow(s) run (#223)
* Run IPVM workflow (json) files, return beginning info * Integrate Runner / worker bits, and pieces like * aborting workers * gc'ing handles * delayqueue/timing-wheel integration for expir(ed)/(ing) workflows * worker's can now send messages to the runner, for things like drop/abort * make db pool accessible within worker, so it's reusable upon creation and run * store receipts and workflow/receipt joint info as part of a DB transaction * runtime-specific proc-macro and worker builder for easier test integration * this now spins up db-related tests (involving workers/schedulers/the-runner) to use different sqlite dbs in parallel * flake fixins around cargo nextest and macos * Removes `Error` from Enum thiserror variants as per common usage * workflow info "storage" stores a timestamp for local use * remove bincode all around, and make rpc encoding/decoding work with messagepack * make database_url work as part as configuration or env (latter takes precedent) * more error-specific types
- Loading branch information
Zeeshan Lakhani
authored
Aug 4, 2023
1 parent
4921bde
commit 7d3f50f
Showing
73 changed files
with
3,543 additions
and
1,683 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,9 @@ jobs: | |
- name: Checkout Repository | ||
uses: actions/checkout@v3 | ||
|
||
- name: Cache Project | ||
uses: Swatinem/rust-cache@v2 | ||
|
||
- name: Run Audit-Check | ||
uses: rustsec/[email protected] | ||
with: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -15,3 +15,5 @@ LICENSE | |
.gitignore | ||
.release-please-manifest.json | ||
.pre-commit-config.yaml | ||
|
||
**/fixtures |
Oops, something went wrong.